body {
    background-color: #f8f9fa;
}
.sidebar {
    background-color: white;
    height: 100vh;
    border-right: 1px solid #e9ecef;
}
.sidebar .nav-link {
    color: #6c757d;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.sidebar .nav-link.active {
    background-color: #0d6efd;
    color: white;
    border-radius: 0;
}
.card-indicator {
    display: flex;
    align-items: center;
    margin-top: 0.5rem;
}
.card-indicator span {
    margin-right: 1.5rem;
    display: flex;
    align-items: center;
}
.indicator-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
}
.dot-active {
    background-color: #28a745;
}
.dot-inactive {
    background-color: #dc3545;
}
.status-badge {
    border-radius: 1rem;
    padding: 0.35rem 0.85rem;
    font-size: 0.85rem;
}
.status-active {
    background-color: rgba(40, 167, 69, 0.2);
    color: #28a745;
}
.status-break {
    background-color: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}
.status-progress {
    background-color: rgba(13, 110, 253, 0.2);
    color: #0d6efd;
}
.status-completed {
    background-color: rgba(40, 167, 69, 0.2);
    color: #28a745;
}
.status-hold {
    background-color: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}
.card-title-icon {
    font-size: 1.25rem;
    color: #0d6efd;
    margin-right: 0.75rem;
}
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}
.user-profile {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
}
.employee-avatar {
    width: 40px; 
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}
.action-icons {
    display: flex;
    gap: 0.75rem;
}

/* Styles for authenticated layout */
.authenticated-layout {
    display: flex;
    min-height: 100vh;
}

.main-content-authenticated {
    flex: 1;
    overflow-x: hidden;
}

/* Styles for guest layout */
.guest-layout {
    min-height: 100vh;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .sidebar {
        position: fixed;
        top: 0;
        left: -250px;
        width: 250px;
        z-index: 1050;
        transition: left 0.3s ease;
    }
    
    .sidebar.show {
        left: 0;
    }
    
    .sidebar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1040;
        display: none;
    }
    
    .sidebar-overlay.show {
        display: block;
    }
    
    .main-content-authenticated {
        width: 100%;
    }
    
    .mobile-sidebar-toggle {
        display: block;
    }
}

@media (min-width: 769px) {
    .mobile-sidebar-toggle {
        display: none;
    }
    
    .sidebar-overlay {
        display: none !important;
    }
}