/* /Components/Calendar/AttendanceCalendar.razor.rz.scp.css */
.monthly-calendar .calendar-container[b-ywzwxqtp6i] {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--mud-palette-divider);
    border-radius: 4px;
    overflow: hidden;
}

.monthly-calendar .calendar-header[b-ywzwxqtp6i] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background-color: var(--mud-palette-background-grey);
    font-weight: 500;
    color: var(--mud-palette-text-secondary);
    border-bottom: 1px solid var(--mud-palette-divider);
}

.monthly-calendar .calendar-header-cell[b-ywzwxqtp6i] {
    padding: 8px 4px;
    text-align: center;
    font-size: 0.8rem;
}

.monthly-calendar .calendar-body[b-ywzwxqtp6i] {
    display: flex;
    flex-direction: column;
}

.monthly-calendar .calendar-week[b-ywzwxqtp6i] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    border-bottom: 1px solid var(--mud-palette-divider);
}

.monthly-calendar .calendar-week:last-child[b-ywzwxqtp6i] {
    border-bottom: none;
}

.monthly-calendar .calendar-day[b-ywzwxqtp6i] {
    position: relative;
    padding: 8px 4px;
    min-height: 90px;
    border-right: 1px solid var(--mud-palette-divider);
    transition: background-color 0.3s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.monthly-calendar .calendar-day:last-child[b-ywzwxqtp6i] {
    border-right: none;
}

.monthly-calendar .calendar-day:hover[b-ywzwxqtp6i] {
    background-color: var(--mud-palette-action-hover);
}

.monthly-calendar .calendar-day.other-month[b-ywzwxqtp6i] {
    color: var(--mud-palette-text-disabled);
    background-color: var(--mud-palette-background-grey);
}

.monthly-calendar .calendar-day.weekend[b-ywzwxqtp6i] {
    background-color: var(--mud-palette-background-grey-light);
}

.monthly-calendar .calendar-day.today[b-ywzwxqtp6i] {
    background-color: var(--mud-palette-primary-lighten);
    font-weight: bold;
}

.monthly-calendar .calendar-day.has-activity .calendar-indicator[b-ywzwxqtp6i] {
    opacity: 1;
}

.monthly-calendar .calendar-date[b-ywzwxqtp6i] {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.monthly-calendar .calendar-indicator[b-ywzwxqtp6i] {
    position: absolute;
    top: 5px;
    right: 5px;
    opacity: 0.5;
    color: var(--mud-palette-primary);
}

.monthly-calendar .calendar-hours[b-ywzwxqtp6i] {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--mud-palette-primary-text);
    background-color: var(--mud-palette-primary);
    padding: 2px 4px;
    border-radius: 4px;
    align-self: flex-end;
}


/* Calendar View Styles */
.calendar-container[b-ywzwxqtp6i] {
    display: flex;
    flex-direction: column;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.calendar-header[b-ywzwxqtp6i] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background-color: var(--mud-palette-primary);
    color: white;
}

.calendar-header-cell[b-ywzwxqtp6i] {
    padding: 12px 8px;
    text-align: center;
    font-weight: 500;
    font-size: 0.9rem;
}

.calendar-body[b-ywzwxqtp6i] {
    display: flex;
    flex-direction: column;
}

.calendar-week[b-ywzwxqtp6i] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    border-bottom: 1px solid #e0e0e0;
}

    .calendar-week:last-child[b-ywzwxqtp6i] {
        border-bottom: none;
    }

.calendar-day[b-ywzwxqtp6i] {
    position: relative;
    min-height: 100px;
    padding: 8px;
    border-right: 1px solid #e0e0e0;
    transition: background-color 0.2s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

    .calendar-day:last-child[b-ywzwxqtp6i] {
        border-right: none;
    }

    .calendar-day:hover[b-ywzwxqtp6i] {
        background-color: rgba(0, 0, 0, 0.04);
    }

    .calendar-day.other-month[b-ywzwxqtp6i] {
        background-color: #f9f9f9;
        color: #aaa;
    }

    .calendar-day.weekend[b-ywzwxqtp6i] {
        background-color: #f5f5f5;
    }

    .calendar-day.today[b-ywzwxqtp6i] {
        background-color: rgba(var(--mud-palette-primary-rgb), 0.08);
        font-weight: bold;
    }

    .calendar-day.has-activity[b-ywzwxqtp6i] {
        border-left: 3px solid var(--mud-palette-primary);
    }

.calendar-date[b-ywzwxqtp6i] {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.calendar-indicator[b-ywzwxqtp6i] {
    margin-top: auto;
}

.work-indicator[b-ywzwxqtp6i] {
    color: var(--mud-palette-primary);
}

.calendar-hours[b-ywzwxqtp6i] {
    margin-top: 4px;
    background-color: rgba(var(--mud-palette-primary-rgb), 0.1);
    border-radius: 4px;
    padding: 2px 6px;
    font-size: 0.8rem;
    color: var(--mud-palette-primary);
    display: inline-block;
    font-weight: 500;
}
/* /Components/Calendar/AttendanceTableView.razor.rz.scp.css */
.custom-table-container[b-ld93rme0xc] {
    overflow-x: auto;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.custom-table[b-ld93rme0xc] {
    display: table;
    width: 100%;
    border-collapse: collapse;
}

.header-row[b-ld93rme0xc], .data-row[b-ld93rme0xc] {
    display: table-row;
}

.grouping-header[b-ld93rme0xc], .day-header[b-ld93rme0xc], .total-header[b-ld93rme0xc],
.grouping-cell[b-ld93rme0xc], .data-cell[b-ld93rme0xc], .total-cell[b-ld93rme0xc] {
    display: table-cell;
    padding: 0.75rem 1rem;
    vertical-align: middle;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.header-row[b-ld93rme0xc] {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #495057;
}

.day-header[b-ld93rme0xc] {
    min-width: 70px;
}

.day-name[b-ld93rme0xc] {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #6c757d;
}

.day-number[b-ld93rme0xc] {
    font-size: 1.1rem;
    font-weight: 700;
}

.grouping-header[b-ld93rme0xc], .grouping-cell[b-ld93rme0xc] {
    text-align: left;
    font-weight: 600;
    background-color: #f8f9fa;
    position: sticky;
    left: 0;
    z-index: 1;
}

.total-header[b-ld93rme0xc], .total-cell[b-ld93rme0xc] {
    background-color: #f8f9fa;
    font-weight: 700;
}

.data-row:hover[b-ld93rme0xc] {
    background-color: #f1f3f5;
}

.weekend-day[b-ld93rme0xc] {
    background-color: #f1f3f5;
    color: #868e96;
}

.today .day-number[b-ld93rme0xc] {
    background-color: var(--mud-palette-primary);
    color: white;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.has-hours[b-ld93rme0xc] {
    background-color: #e6f7ff;
    font-weight: 500;
    color: #1890ff;
}

.has-hours span[b-ld93rme0xc] {
    background-color: #d6e4ff;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.85rem;
}
/* /Components/Calendar/TimeOffCalendarView.razor.rz.scp.css */
.custom-table-container[b-t7t0e79kfs] {
    overflow-x: auto;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.custom-table[b-t7t0e79kfs] {
    display: table;
    width: 100%;
    border-collapse: collapse;
}

.header-row[b-t7t0e79kfs], .data-row[b-t7t0e79kfs] {
    display: table-row;
}

.grouping-header[b-t7t0e79kfs], .day-header[b-t7t0e79kfs], .total-header[b-t7t0e79kfs],
.grouping-cell[b-t7t0e79kfs], .data-cell[b-t7t0e79kfs], .total-cell[b-t7t0e79kfs] {
    display: table-cell;
    padding: 0.75rem 1rem;
    vertical-align: middle;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.header-row[b-t7t0e79kfs] {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #495057;
}

.day-header[b-t7t0e79kfs] {
    min-width: 70px;
}

.day-name[b-t7t0e79kfs] {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #6c757d;
}

.day-number[b-t7t0e79kfs] {
    font-size: 1.1rem;
    font-weight: 700;
}

.grouping-header[b-t7t0e79kfs], .grouping-cell[b-t7t0e79kfs] {
    text-align: left;
    font-weight: 600;
    background-color: #f8f9fa;
    position: sticky;
    left: 0;
    z-index: 1;
}

.total-header[b-t7t0e79kfs], .total-cell[b-t7t0e79kfs] {
    background-color: #f8f9fa;
    font-weight: 700;
}

.data-row:hover[b-t7t0e79kfs] {
    background-color: #f1f3f5;
}

.weekend-day[b-t7t0e79kfs] {
    background-color: #f1f3f5;
    color: #868e96;
}

.today .day-number[b-t7t0e79kfs] {
    background-color: var(--mud-palette-primary);
    color: white;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.has-hours[b-t7t0e79kfs] {
    background-color: #e6f7ff;
    font-weight: 500;
    color: #1890ff;
}

    .has-hours span[b-t7t0e79kfs] {
        background-color: #d6e4ff;
        padding: 4px 8px;
        border-radius: 12px;
        font-size: 0.85rem;
    }
/* /Components/Dialogs/CreateUserWizardDialog.razor.rz.scp.css */
.create-user-wizard .mud-dialog-content[b-nan5gnddf5] {
    padding: 16px;
}

.wizard-content[b-nan5gnddf5] {
    display: flex;
    flex-direction: column;
    gap: 24px;
}



.project-cards-container[b-nan5gnddf5] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.project-card[b-nan5gnddf5] {
    border: 1px solid var(--mud-palette-divider);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.project-card:hover[b-nan5gnddf5] {
    box-shadow: var(--mud-elevation-4);
    transform: translateY(-2px);
}
.project-card.selected[b-nan5gnddf5] {
    border-color: var(--mud-palette-primary);
    box-shadow: var(--mud-elevation-8);
}

.project-card .mud-card-content[b-nan5gnddf5] {
    padding: 16px;
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .project-cards-container[b-nan5gnddf5] {
        grid-template-columns: 1fr; /* Stack cards on small screens */
    }

    
}
/* /Components/Documents/DocumentManager.razor.rz.scp.css */
.document-container[b-lo2bc8rr0b] {
    min-height: 600px;
    background-color: var(--mud-palette-background);
}

.file-item[b-lo2bc8rr0b] {
    transition: all 0.3s ease;
    border-radius: 8px;
    margin-bottom: 8px;
}

    .file-item:hover[b-lo2bc8rr0b] {
        background-color: var(--mud-palette-action-hover);
        transform: translateX(4px);
        cursor: pointer;
    }

.empty-state[b-lo2bc8rr0b] {
    text-align: center;
    padding: 60px;
    opacity: 0.7;
}

.toolbar-modern[b-lo2bc8rr0b] {
    background: linear-gradient(135deg, rgb(89 74 226 / 19%) 0%, rgb(62 44 221 / 41%) 100%);
    color: white;
    border-radius: 12px 12px 0 0;
    padding: 16px;
}

.fade-in[b-lo2bc8rr0b] {
    animation: fadeIn-b-lo2bc8rr0b 0.5s ease;
}

@keyframes fadeIn-b-lo2bc8rr0b {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* /Components/Documents/EmployeeDocumentManager.razor.rz.scp.css */
.document-container[b-53s5wwgjdv] {
    min-height: 600px;
    background-color: var(--mud-palette-background);
}

.drop-zone[b-53s5wwgjdv] {
    border: 2px dashed var(--mud-palette-primary);
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    background-color: var(--mud-palette-primary-hover);
    opacity: 0.1;
}

    .drop-zone.active[b-53s5wwgjdv] {
        opacity: 0.3;
        transform: scale(1.02);
    }

.file-item[b-53s5wwgjdv] {
    transition: all 0.3s ease;
    border-radius: 8px;
    margin-bottom: 8px;
}

    .file-item:hover[b-53s5wwgjdv] {
        background-color: var(--mud-palette-action-hover);
        transform: translateX(4px);
        cursor: pointer;
    }

.file-grid-item[b-53s5wwgjdv] {
    transition: all 0.3s ease;
    border-radius: 12px;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

    .file-grid-item:hover[b-53s5wwgjdv] {
        transform: translateY(-4px);
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }

.empty-state[b-53s5wwgjdv] {
    text-align: center;
    padding: 60px;
    opacity: 0.7;
}

.toolbar-modern[b-53s5wwgjdv] {
    background: linear-gradient(135deg, rgb(89 74 226 / 19%) 0%, rgb(62 44 221 / 41%) 100%);
    color: white;
    border-radius: 12px 12px 0 0;
    padding: 16px;
}

.fade-in[b-53s5wwgjdv] {
    animation: fadeIn-b-53s5wwgjdv 0.5s ease;
}

@keyframes fadeIn-b-53s5wwgjdv {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-field-responsive[b-53s5wwgjdv] {
    max-width: 200px;
}

@media (max-width: 600px) {
    .search-field-responsive[b-53s5wwgjdv] {
        max-width: 150px;
        flex-grow: 1;
    }
}
/* /Components/LocationComponent.razor.rz.scp.css */
.location-search-container[b-3uo23sw8sk] {
    position: relative;
    margin-bottom: 1rem;
}

.search-input-wrapper[b-3uo23sw8sk] {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input[b-3uo23sw8sk] {
    width: 100%;
    padding: 12px 16px 12px 48px;
    border: 2px solid #e0e0e0;
    border-radius: 24px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.search-input:focus[b-3uo23sw8sk] {
    border-color: #1976d2;
    box-shadow: 0 4px 12px rgba(25,118,210,0.2);
}

.search-input[b-3uo23sw8sk]::placeholder {
    color: #9e9e9e;
    font-style: italic;
}

.search-icon[b-3uo23sw8sk] {
    position: absolute;
    left: 16px;
    color: #757575;
    z-index: 2;
}

.loading-spinner[b-3uo23sw8sk] {
    position: absolute;
    right: 16px;
    color: #1976d2;
}

.clear-button[b-3uo23sw8sk] {
    position: absolute;
    right: 16px;
    background: none;
    border: none;
    color: #757575;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.clear-button:hover[b-3uo23sw8sk] {
    background-color: #f5f5f5;
}

.search-results[b-3uo23sw8sk] {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
    margin-top: 4px;
}

.search-result-item[b-3uo23sw8sk] {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-result-item:hover[b-3uo23sw8sk] {
    background-color: #f8f9fa;
}

.search-result-item:last-child[b-3uo23sw8sk] {
    border-bottom: none;
}

.result-icon[b-3uo23sw8sk] {
    color: #1976d2;
    flex-shrink: 0;
}

.result-content[b-3uo23sw8sk] {
    flex: 1;
    min-width: 0;
}

.result-main-text[b-3uo23sw8sk] {
    font-weight: 500;
    color: #212121;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.result-secondary-text[b-3uo23sw8sk] {
    font-size: 14px;
    color: #757575;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.no-results[b-3uo23sw8sk] {
    padding: 16px;
    text-align: center;
    color: #757575;
    font-style: italic;
}

.selected-location-card[b-3uo23sw8sk] {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    border: 2px solid #1976d2;
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.selected-location-card[b-3uo23sw8sk]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1976d2, #9c27b0);
}

.location-header[b-3uo23sw8sk] {
    display: flex;
    justify-content: between;
    align-items: center;
    margin-bottom: 12px;
}

.location-title[b-3uo23sw8sk] {
    font-weight: 600;
    color: #1976d2;
    display: flex;
    align-items: center;
    gap: 8px;
}

.location-address[b-3uo23sw8sk] {
    color: #424242;
    line-height: 1.5;
}

.map-container[b-3uo23sw8sk] {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    position: relative;
}

.map-loading[b-3uo23sw8sk] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.radius-input-container[b-3uo23sw8sk] {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 16px;
    margin-top: 1rem;
}

.helper-text[b-3uo23sw8sk] {
    color: #757575;
    font-size: 14px;
    margin-top: 8px;
    line-height: 1.4;
}

.search-placeholder[b-3uo23sw8sk] {
    text-align: center;
    padding: 24px 16px;
    color: #757575;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.search-placeholder-icon[b-3uo23sw8sk] {
    font-size: 48px;
    color: #e0e0e0;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .search-input[b-3uo23sw8sk] {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 14px 16px 14px 48px;
    }
    
    .search-results[b-3uo23sw8sk] {
        max-height: 250px;
    }
    
    .selected-location-card[b-3uo23sw8sk] {
        padding: 12px;
    }
}

/* Animation for search results */
.search-results[b-3uo23sw8sk] {
    animation: slideDown-b-3uo23sw8sk 0.2s ease-out;
}

@keyframes slideDown-b-3uo23sw8sk {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pulse animation for loading */
.loading-pulse[b-3uo23sw8sk] {
    animation: pulse-b-3uo23sw8sk 1.5s ease-in-out infinite;
}

@keyframes pulse-b-3uo23sw8sk {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}
/* /Components/ProcessingOverlay.razor.rz.scp.css */
.processing-overlay[b-tirazldpif] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(3px);
}

.processing-content[b-tirazldpif] {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: fadeIn-b-tirazldpif 0.3s ease-out;
}

@keyframes fadeIn-b-tirazldpif {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
.nav-brand[b-9hwy6crdju] {
    font-weight: 600;
    margin-right: 8px;
}

.nav-logo[b-9hwy6crdju] {
    height: 28px;
    width: 28px;
}

.notification-read[b-9hwy6crdju] {
    background-color: var(--mud-palette-background-grey);
    opacity: 0.7;
}

.notification-unread[b-9hwy6crdju] {
    background-color: var(--mud-palette-background);
}

.loading-container[b-9hwy6crdju] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.logo-section[b-9hwy6crdju] {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.logo-glow[b-9hwy6crdju] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-b-9hwy6crdju 3s ease-in-out infinite alternate;
}

.logo-img[b-9hwy6crdju] {
    width: 120px;
    height: 120px;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.2));
    animation: logoSpin-b-9hwy6crdju 4s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.brand-title[b-9hwy6crdju] {
    background: linear-gradient(135deg, #ffffff, #f8f9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 3.5rem;
    letter-spacing: -2px;
    margin: 1.5rem 0 0.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    animation: titleGlow-b-9hwy6crdju 2s ease-in-out infinite alternate;
}

.loading-text[b-9hwy6crdju] {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1rem;
    animation: fadeInOut-b-9hwy6crdju 2s ease-in-out infinite;
}

.progress-section[b-9hwy6crdju] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 10;
}

@keyframes logoSpin-b-9hwy6crdju {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }

    25% {
        transform: rotate(5deg) scale(1.05);
    }

    50% {
        transform: rotate(0deg) scale(1.1);
    }

    75% {
        transform: rotate(-5deg) scale(1.05);
    }
}

@keyframes pulse-b-9hwy6crdju {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.1;
    }
}

@keyframes titleGlow-b-9hwy6crdju {
    0% {
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    }

    100% {
        filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.6));
    }
}

@keyframes fadeInOut-b-9hwy6crdju {
    0%, 100% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }
}
/* /Pages/Auth/Login.razor.rz.scp.css */
@media (max-height: 700px) {
    .login-container[b-bcb7108mcb] {
        justify-content: flex-start;
        padding-top: 2rem;
    }
}
/* /Pages/Home.razor.rz.scp.css */
/* Stili personalizzati per il componente di timbratura */

.timbratura-card[b-whuctsgell] {
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .timbratura-card:hover[b-whuctsgell] {
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    }

.timbratura-header[b-whuctsgell] {
    background: linear-gradient(135deg, #594ae2 0%, #5e0da1 100%);
    padding: 20px;
    color: white;
}

.session-info[b-whuctsgell] {
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 8px;
    backdrop-filter: blur(4px);
}

.status-badge[b-whuctsgell] {
    display: flex;
    align-items: center;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.9rem;
}

.active-session[b-whuctsgell] {
    background-color: rgba(76, 175, 80, 0.12);
    color: var(--mud-palette-success);
}

.inactive-session[b-whuctsgell] {
    background-color: rgba(158, 158, 158, 0.12);
    color: var(--mud-palette-dark);
}

.time-display[b-whuctsgell] {
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 0;
}

.stato-container[b-whuctsgell] {
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.stato-container[b-whuctsgell]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0) 100%);
    z-index: 0;
}

.in-servizio[b-whuctsgell] {
    background-color: rgba(76, 175, 80, 0.08);
    border-left-color: #4caf50;
}

.in-servizio[b-whuctsgell]::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    background-color: rgba(76, 175, 80, 0.1);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.non-in-servizio[b-whuctsgell] {
    background-color: rgba(158, 158, 158, 0.08);
    border-left-color: #9e9e9e;
}

.stato-indicatore[b-whuctsgell] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.in-servizio .stato-indicatore[b-whuctsgell] {
    background-color: rgba(76, 175, 80, 0.12);
}

.timbratura-btn[b-whuctsgell],
.timbratura-btn-gps[b-whuctsgell] {
    border-radius: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    height: 52px;
    text-transform: none;
    font-size: 1rem;
    padding: 12px 24px;
}

    .timbratura-btn:hover[b-whuctsgell],
    .timbratura-btn-gps:hover[b-whuctsgell] {
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

.timbratura-btn-gps[b-whuctsgell] {
    border-width: 2px;
    background-color: white !important;
    color: var(--mud-palette-primary) !important;
    border: 2px solid var(--mud-palette-primary) !important;
}

.timbratura-btn-gps:hover[b-whuctsgell] {
    background-color: rgba(var(--mud-palette-primary-rgb), 0.04) !important;
}

/* Animazione pulsante quando in servizio */
@keyframes pulse-b-whuctsgell {
    0% {
        box-shadow: 0 0 0 0 rgba(244, 67, 54, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(244, 67, 54, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(244, 67, 54, 0);
    }
}

.in-servizio .timbratura-btn[b-whuctsgell] {
    animation: pulse-b-whuctsgell 2s infinite;
}

.checkout-btn[b-whuctsgell] {
    background-color: #f44336 !important;
    animation: pulse-b-whuctsgell 2s infinite;
}

/* Effetto ripple sui pulsanti */
.mud-button-root[b-whuctsgell]::after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, #fff 10%, transparent 10.01%);
    background-repeat: no-repeat;
    background-position: 50%;
    transform: scale(10, 10);
    opacity: 0;
    transition: transform .5s, opacity 1s;
}

.mud-button-root:active[b-whuctsgell]::after {
    transform: scale(0, 0);
    opacity: .3;
    transition: 0s;
}

/* Stilizza le liste delle timbrature */
.mud-list-item[b-whuctsgell] {
    transition: background-color 0.2s ease;
}

    .mud-list-item:hover[b-whuctsgell] {
        background-color: rgba(0, 0, 0, 0.03);
    }

/* Work Session Info Styles */
.work-session-info[b-whuctsgell] {
    background-color: rgba(0, 0, 0, 0.02);
    border-radius: 12px;
    padding: 16px;
    animation: fadeIn 0.5s ease-in-out;
}

.duration-counter[b-whuctsgell] {
    font-weight: 600;
    color: var(--mud-palette-success);
}

/* Stile per dispositivi mobili */
@media (max-width: 600px) {
    .mud-container[b-whuctsgell] {
        padding: 8px;
    }

    .timbratura-header[b-whuctsgell] {
        padding: 16px;
        flex-direction: column;
    }
    
    .session-info[b-whuctsgell] {
        margin-top: 8px;
        width: 100%;
        text-align: center;
    }

    .timbratura-btn[b-whuctsgell],
    .timbratura-btn-gps[b-whuctsgell] {
        height: 48px;
    }

    .timbratura-card[b-whuctsgell], .monthly-calendar[b-whuctsgell] {
        border-radius: 12px;
    }
}

/* Per rendere le schede più vivide su schermi più grandi */
@media (min-width: 960px) {
    .timbratura-card[b-whuctsgell] {
        max-width: 800px;
        margin: 0 auto;
    }
}

/* Stili personalizzati per la pagina Home.razor */
.loading-card[b-whuctsgell] {
    max-width: 400px;
    margin: 3rem auto;
    border-radius: 16px;
    overflow: hidden;
    animation: fadeIn 0.5s ease-in-out;
}

/* Monthly Report Styles */
.month-selector[b-whuctsgell] {
    background-color: rgba(0, 0, 0, 0.02);
    padding: 8px 16px;
    border-radius: 8px;
}

.monthly-hours[b-whuctsgell] {
    display: flex;
    align-items: center;
    font-weight: 500;
}

.monthly-calendar[b-whuctsgell] {
    margin-top: 16px;
    border-radius: 8px;
    overflow: hidden;
}

.mud-table[b-whuctsgell] {
    border-radius: 8px;
    overflow: hidden;
}

.mud-table-cell[b-whuctsgell] {
    transition: background-color 0.2s ease;
}

/* /Pages/Projects/ProjectDetailsPage.razor.rz.scp.css */
.project-header[b-b35d4ll2ti] {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, var(--mud-palette-primary) 0%, var(--mud-palette-secondary) 100%);
    color: white;
    padding: 2rem;
}

.project-header-content[b-b35d4ll2ti] {
    z-index: 2;
    position: relative;
}

.project-header-bg[b-b35d4ll2ti] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.2'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.project-details-card[b-b35d4ll2ti] {
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    background-color: var(--mud-palette-background);
    transition: all 0.3s ease;
    height: 100%;
    padding: 1.5rem;
}

.project-details-card:hover[b-b35d4ll2ti] {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.section-title[b-b35d4ll2ti] {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--mud-palette-divider);
    display: flex;
    align-items: center;
}

.section-title .mud-icon[b-b35d4ll2ti] {
    margin-right: 10px;
}

.content-section[b-b35d4ll2ti] {
    margin-bottom: 2rem;
    animation: fadeIn-b-b35d4ll2ti 0.5s ease;
}

.section-nav[b-b35d4ll2ti] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.section-nav-item[b-b35d4ll2ti] {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    flex-basis: calc(50% - 0.25rem);
}

    .section-nav-item.active[b-b35d4ll2ti] {
        background-color: var(--mud-palette-primary-lighten);
        color: white;
        font-weight: 500;
    }

.section-nav-item:hover:not(.active)[b-b35d4ll2ti] {
    background-color: var(--mud-palette-background-grey);
}

.section-nav-item .mud-icon[b-b35d4ll2ti] {
    margin-right: 0.5rem;
}

.info-list-item[b-b35d4ll2ti] {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.info-list-item .mud-icon[b-b35d4ll2ti] {
    margin-right: 1rem;
    color: var(--mud-palette-primary);
    background-color: var(--mud-palette-primary-lighten);
    padding: 8px;
    border-radius: 8px;
}

.info-list-item-content[b-b35d4ll2ti] {
    flex: 1;
}

.info-label[b-b35d4ll2ti] {
    font-size: 0.75rem;
    color: var(--mud-palette-text-secondary);
    margin-bottom: 0.25rem;
}

.info-value[b-b35d4ll2ti] {
    font-weight: 500;
}

.team-member-card[b-b35d4ll2ti] {
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    background-color: var(--mud-palette-surface);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.team-member-card:hover[b-b35d4ll2ti] {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.team-member-avatar[b-b35d4ll2ti] {
    margin-right: 1rem;
    background-color: var(--mud-palette-primary-lighten);
    color: var(--mud-palette-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

.team-member-info[b-b35d4ll2ti] {
    flex: 1;
}

.team-member-actions[b-b35d4ll2ti] {
    margin-left: 0.5rem;
}

.map-container[b-b35d4ll2ti] {
    border-radius: 12px;
    overflow: hidden;
    height: 250px;
    position: relative;
    background-color: #f0f0f0;
}

.status-badge[b-b35d4ll2ti] {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.status-badge-success[b-b35d4ll2ti] {
    background-color: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
}

.status-badge-error[b-b35d4ll2ti] {
    background-color: rgba(244, 67, 54, 0.1);
    color: #F44336;
}

/* Animation */
@keyframes fadeIn-b-b35d4ll2ti {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in[b-b35d4ll2ti] {
    animation: fadeIn-b-b35d4ll2ti 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 960px) {
    .project-header[b-b35d4ll2ti] {
        padding: 1.5rem;
    }
}

@media (min-width: 768px) {
    .section-nav[b-b35d4ll2ti] {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }

    .section-nav-item[b-b35d4ll2ti] {
        flex-grow: 0;
        flex-basis: auto;
        justify-content: flex-start;
        padding: 0.75rem 1.5rem;
    }
}

@media (max-width: 600px) {
    .project-header-actions[b-b35d4ll2ti] {
        margin-top: 1rem;
    }
}
/* /Pages/Projects/ProjectsPage.razor.rz.scp.css */
.projects-header[b-9dyg9hqubc] {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, var(--mud-palette-primary) 0%, var(--mud-palette-secondary) 100%);
    color: white;
    padding: 2rem;
}

.projects-header-content[b-9dyg9hqubc] {
    z-index: 2;
    position: relative;
}

.projects-header-bg[b-9dyg9hqubc] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.2'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.project-card[b-9dyg9hqubc] {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    background-color: var(--mud-palette-surface);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: relative;
}

.project-card:hover[b-9dyg9hqubc] {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.project-card-header[b-9dyg9hqubc] {
    padding: 1.5rem;
    border-bottom: 1px solid var(--mud-palette-divider);
    position: relative;
}

.project-card-content[b-9dyg9hqubc] {
    padding: 1.5rem;
}

.project-card-footer[b-9dyg9hqubc] {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--mud-palette-divider);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.02);
}

.project-info-item[b-9dyg9hqubc] {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.project-info-item .mud-icon[b-9dyg9hqubc] {
    margin-right: 0.75rem;
    color: var(--mud-palette-primary);
    opacity: 0.8;
}

.project-info-label[b-9dyg9hqubc] {
    font-size: 0.75rem;
    color: var(--mud-palette-text-secondary);
    margin-right: 0.5rem;
}

.project-status-badge[b-9dyg9hqubc] {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

.project-status-active[b-9dyg9hqubc] {
    background-color: rgba(76, 175, 80, 0.1);
    color: var(--mud-palette-success);
}

.project-status-inactive[b-9dyg9hqubc] {
    background-color: rgba(244, 67, 54, 0.1);
    color: var(--mud-palette-error);
}

.project-actions[b-9dyg9hqubc] {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
}

.search-filter-bar[b-9dyg9hqubc] {
    background-color: var(--mud-palette-surface);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.filters-section[b-9dyg9hqubc] {
    flex: 1;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.view-toggle[b-9dyg9hqubc] {
    display: flex;
    background-color: var(--mud-palette-background-grey);
    border-radius: 8px;
    padding: 0.25rem;
}

.view-toggle-option[b-9dyg9hqubc] {
    padding: 0.5rem;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.view-toggle-option.active[b-9dyg9hqubc] {
    background-color: var(--mud-palette-primary);
    color: white;
}

.fade-in[b-9dyg9hqubc] {
    animation: fadeIn-b-9dyg9hqubc 0.3s ease;
}

.pagination-container[b-9dyg9hqubc] {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.empty-projects[b-9dyg9hqubc] {
    text-align: center;
    padding: 3rem 0;
}

.empty-projects-icon[b-9dyg9hqubc] {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
    color: var(--mud-palette-primary);
}

.table-view[b-9dyg9hqubc] {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.table-view[b-9dyg9hqubc]  .mud-table {
    background-color: var(--mud-palette-surface);
}

.table-view[b-9dyg9hqubc]  .mud-table-container {
    border-radius: 12px;
    overflow: hidden;
}

.table-view[b-9dyg9hqubc]  .mud-table-head {
    background-color: var(--mud-palette-primary-lighten);
    color: white;
}

.table-view[b-9dyg9hqubc]  .mud-table-head th {
    font-weight: 500;
    padding: 1rem;
}

.table-view[b-9dyg9hqubc]  .mud-table-body tr:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.table-view[b-9dyg9hqubc]  .mud-table-body td {
    padding: 1rem;
}

.table-view[b-9dyg9hqubc]  .mud-link {
    font-weight: 500;
}

@keyframes fadeIn-b-9dyg9hqubc {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 960px) {
    .projects-header[b-9dyg9hqubc] {
        padding: 1.5rem;
    }
    
    .search-filter-bar[b-9dyg9hqubc] {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filters-section[b-9dyg9hqubc] {
        margin-top: 1rem;
    }
}

@media (max-width: 600px) {
    .project-card-footer[b-9dyg9hqubc] {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }
}
/* /Pages/Projects/ProjectTimeManagement.razor.rz.scp.css */
.sticky-fab-container[b-7o8bxm292x] {
    position: fixed;
    bottom: 16px;
    right: 16px;
    z-index: 10000;
}

@media (max-width: 600px) {
    .sticky-fab-container[b-7o8bxm292x] {
        left: 16px;
        right: 16px;
        bottom: 16px;
        margin-bottom: 35px;
    }


}
/* /Pages/Users/UserDetailsPage.razor.rz.scp.css */
.user-header[b-lt8yog2u62] {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, var(--mud-palette-primary) 0%, var(--mud-palette-secondary) 100%);
    color: white;
    padding: 2rem;
}

.user-header-content[b-lt8yog2u62] {
    z-index: 2;
    position: relative;
}

.user-header-bg[b-lt8yog2u62] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.2'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.user-details-card[b-lt8yog2u62] {
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    background-color: var(--mud-palette-background);
    transition: all 0.3s ease;
    height: 100%;
}

.user-details-card:hover[b-lt8yog2u62] {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.section-title[b-lt8yog2u62] {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--mud-palette-divider);
    display: flex;
    align-items: center;
}

.section-title .mud-icon[b-lt8yog2u62] {
    margin-right: 10px;
}

.content-section[b-lt8yog2u62] {
    margin-bottom: 2rem;
    animation: fadeIn-b-lt8yog2u62 0.5s ease;
}

.section-nav[b-lt8yog2u62] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.section-nav-item[b-lt8yog2u62] {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    flex-basis: calc(50% - 0.25rem);
}

    .section-nav-item.active[b-lt8yog2u62] {
        background-color: var(--mud-palette-primary-lighten);
        color: white;
        font-weight: 500;
    }

.section-nav-item:hover:not(.active)[b-lt8yog2u62] {
    background-color: var(--mud-palette-background-grey);
}

.section-nav-item .mud-icon[b-lt8yog2u62] {
    margin-right: 0.5rem;
}

.info-list-item[b-lt8yog2u62] {
    margin-bottom: 1rem;
    display: flex;
    align-items: start;
}

.info-list-item .mud-icon[b-lt8yog2u62] {
    margin-right: 1rem;
    color: var(--mud-palette-primary);
    background-color: var(--mud-palette-primary-lighten);
    padding: 8px;
    border-radius: 8px;
}

.info-list-item-content[b-lt8yog2u62] {
    flex: 1;
}

.info-label[b-lt8yog2u62] {
    font-size: 0.75rem;
    color: var(--mud-palette-text-secondary);
    margin-bottom: 0.25rem;
}

.info-value[b-lt8yog2u62] {
    font-weight: 500;
}

.table-view[b-lt8yog2u62] {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.table-view[b-lt8yog2u62]  .mud-table {
    background-color: var(--mud-palette-surface);
}

.table-view[b-lt8yog2u62]  .mud-table-container {
    border-radius: 12px;
    overflow: hidden;
}

.table-view[b-lt8yog2u62]  .mud-table-head {
    background-color: var(--mud-palette-primary-lighten);
    color: white;
}

.table-view[b-lt8yog2u62]  .mud-table-head th {
    font-weight: 500;
    padding: 1rem;
}

.table-view[b-lt8yog2u62]  .mud-table-body tr:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.table-view[b-lt8yog2u62]  .mud-table-body td {
    padding: 1rem;
}

.table-view[b-lt8yog2u62]  .mud-link {
    font-weight: 500;
}

@keyframes fadeIn-b-lt8yog2u62 {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in[b-lt8yog2u62] {
    animation: fadeIn-b-lt8yog2u62 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 960px) {
    .user-header[b-lt8yog2u62] {
        padding: 1.5rem;
    }
}

@media (min-width: 768px) {
    .section-nav[b-lt8yog2u62] {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }

    .section-nav-item[b-lt8yog2u62] {
        flex-grow: 0;
        flex-basis: auto;
        justify-content: flex-start;
        padding: 0.75rem 1.5rem;
    }
}

@media (max-width: 600px) {
    .user-header-actions[b-lt8yog2u62] {
        margin-top: 1rem;
    }
}
/* /Pages/Users/UsersPage.razor.rz.scp.css */
.users-header[b-xlt5fg18h3] {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, var(--mud-palette-primary) 0%, var(--mud-palette-secondary) 100%);
    color: white;
    padding: 2rem;
}

.users-header-content[b-xlt5fg18h3] {
    z-index: 2;
    position: relative;
}

.users-header-bg[b-xlt5fg18h3] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.2'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.user-card[b-xlt5fg18h3] {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    background-color: var(--mud-palette-surface);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: relative;
}

.user-card:hover[b-xlt5fg18h3] {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.user-card-header[b-xlt5fg18h3] {
    padding: 1.5rem;
    border-bottom: 1px solid var(--mud-palette-divider);
    position: relative;
}

.user-card-content[b-xlt5fg18h3] {
    padding: 1.5rem;
}

.user-card-footer[b-xlt5fg18h3] {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--mud-palette-divider);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.02);
}

.user-info-item[b-xlt5fg18h3] {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.user-info-item .mud-icon[b-xlt5fg18h3] {
    margin-right: 0.75rem;
    color: var(--mud-palette-primary);
    opacity: 0.8;
}

.user-info-label[b-xlt5fg18h3] {
    font-size: 0.75rem;
    color: var(--mud-palette-text-secondary);
    margin-right: 0.5rem;
}

.user-status-badge[b-xlt5fg18h3] {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: 0.5rem;
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
}

.user-status-active[b-xlt5fg18h3] {
    background-color: rgba(76, 175, 80, 0.1);
    color: var(--mud-palette-success);
}

.user-status-inactive[b-xlt5fg18h3] {
    background-color: rgba(244, 67, 54, 0.1);
    color: var(--mud-palette-error);
}

.user-actions[b-xlt5fg18h3] {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
}

.search-filter-bar[b-xlt5fg18h3] {
    background-color: var(--mud-palette-surface);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.filters-section[b-xlt5fg18h3] {
    flex: 1;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.view-toggle[b-xlt5fg18h3] {
    display: flex;
    background-color: var(--mud-palette-background-grey);
    border-radius: 8px;
    padding: 0.25rem;
}

.view-toggle-option[b-xlt5fg18h3] {
    padding: 0.5rem;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.view-toggle-option.active[b-xlt5fg18h3] {
    background-color: var(--mud-palette-primary);
    color: white;
}

.fade-in[b-xlt5fg18h3] {
    animation: fadeIn-b-xlt5fg18h3 0.3s ease;
}

.pagination-container[b-xlt5fg18h3] {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.empty-users[b-xlt5fg18h3] {
    text-align: center;
    padding: 3rem 0;
}

.empty-users-icon[b-xlt5fg18h3] {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
    color: var(--mud-palette-primary);
}

.table-view[b-xlt5fg18h3] {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.table-view[b-xlt5fg18h3]  .mud-table {
    background-color: var(--mud-palette-surface);
}

.table-view[b-xlt5fg18h3]  .mud-table-container {
    border-radius: 12px;
    overflow: hidden;
}

.table-view[b-xlt5fg18h3]  .mud-table-head {
    background-color: var(--mud-palette-primary-lighten);
    color: white;
}

.table-view[b-xlt5fg18h3]  .mud-table-head th {
    font-weight: 500;
    padding: 1rem;
}

.table-view[b-xlt5fg18h3]  .mud-table-body tr:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.table-view[b-xlt5fg18h3]  .mud-table-body td {
    padding: 1rem;
}

.table-view[b-xlt5fg18h3]  .mud-link {
    font-weight: 500;
}

@keyframes fadeIn-b-xlt5fg18h3 {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 960px) {
    .users-header[b-xlt5fg18h3] {
        padding: 1.5rem;
    }
    
    .search-filter-bar[b-xlt5fg18h3] {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filters-section[b-xlt5fg18h3] {
        margin-top: 1rem;
    }
}

@media (max-width: 600px) {
    .user-card-footer[b-xlt5fg18h3] {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }
}
