/* Anime Ratings - Module Colors: #27ae60 (primary) / #229954 (secondary) */

:root {
    --anime-primary: #27ae60;
    --anime-secondary: #229954;
    --anime-gradient: linear-gradient(135deg, #27ae60 0%, #229954 100%);
}

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

.table-hover tbody tr:hover {
    background-color: rgba(39, 174, 96, 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(--anime-gradient);
    border-radius: 10px;
}

.table-responsive::-webkit-scrollbar-thumb:hover {
    background: var(--anime-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;
    }
}
