/* Book Ratings - Module Colors: #8b4513 (primary) / #654321 (secondary) */

:root {
    --book-primary: #8b4513;
    --book-secondary: #654321;
    --book-gradient: linear-gradient(135deg, #8b4513 0%, #654321 100%);
}

.card:hover {
    transition: all 0.3s ease;
    transform: translateY(-5px);
}

.table-hover tbody tr:hover {
    background-color: rgba(139, 69, 19, 0.1);
    transition: background 0.2s ease;
}

/* Custom scroll bar for table */
.table-responsive::-webkit-scrollbar {
    height: 8px;
}

.table-responsive::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.table-responsive::-webkit-scrollbar-thumb {
    background: var(--book-gradient);
    border-radius: 10px;
}

.table-responsive::-webkit-scrollbar-thumb:hover {
    background: var(--book-primary);
}

/* Animations */
/* @keyframes - Moved to theme files */
}

.card {
    animation: fadeIn 0.5s ease-in-out;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .nav-pills {
        flex-wrap: wrap;
    }
    
    .nav-link {
        padding: 8px 16px !important;
        font-size: 0.9rem;
    }
}
