/* Admin Portal Custom Styles */

.admin-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 260px;
    height: 100vh;
    overflow-y: auto;
    z-index: 1000;
}

.admin-sidebar .nav-link {
    border-radius: 0.375rem;
    padding: 0.6rem 1rem;
    margin-bottom: 2px;
    transition: background-color 0.15s;
}

.admin-sidebar .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.admin-sidebar .nav-link.active {
    background-color: rgba(13, 110, 253, 0.8);
    font-weight: 500;
}

.stat-card {
    transition: transform 0.15s;
}

.stat-card:hover {
    transform: translateY(-2px);
}

.table th {
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #6c757d;
}

.cursor-pointer {
    cursor: pointer;
}

.badge-free {
    background-color: #6c757d;
}

.badge-weekly {
    background-color: #0d6efd;
}

.badge-monthly {
    background-color: #6610f2;
}

.badge-annual {
    background-color: #198754;
}

.toast-container {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 9999;
}

@media (max-width: 768px) {
    .admin-sidebar {
        display: none;
    }
}
