/* Hero Links - Custom Styles */

:root {
    --sidebar-width: 250px;
}

/* Sidebar */
.sidebar {
    width: var(--sidebar-width);
    min-height: 100vh;
    transition: margin-left 0.3s ease;
}

.sidebar .nav-link {
    border-radius: 6px;
    padding: 8px 12px;
    margin-bottom: 2px;
    font-size: 0.9rem;
}

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

.sidebar .nav-link.active {
    background: rgba(255,255,255,0.15);
}

/* Sidebar collapsed */
.sidebar-collapsed .sidebar {
    margin-left: calc(var(--sidebar-width) * -1);
}

/* Cards */
.card {
    border-radius: 12px;
}

/* Tables */
.table th {
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6c757d;
}

/* Badges */
.badge {
    font-weight: 500;
}

/* Dark mode adjustments */
[data-bs-theme="dark"] .sidebar {
    background: #1a1d21 !important;
}

[data-bs-theme="dark"] .card {
    border-color: rgba(255,255,255,0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .sidebar {
        position: fixed;
        z-index: 1050;
        margin-left: calc(var(--sidebar-width) * -1);
    }
    
    .sidebar-open .sidebar {
        margin-left: 0;
    }
}

/* Progress bar animation */
.progress-bar {
    transition: width 1s linear;
}

/* Toast notifications */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}
