@import '_content/Blazor.Bootstrap/Blazor.Bootstrap.7t9tbfaemk.bundle.scp.css';

/* /Components/ActivityCard.razor.rz.scp.css */
/* Activity Card */
.activity-card[b-f58v10tfq6] {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.activity-card[b-f58v10tfq6]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--bs-primary) 0%, #8b5cf6 100%);
}

.activity-card:hover[b-f58v10tfq6] {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border-color: rgba(112, 72, 232, 0.2);
}

/* Activity Header */
.activity-header[b-f58v10tfq6] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.activity-info[b-f58v10tfq6] {
    display: flex;
    gap: 1rem;
    flex: 1;
    align-items: flex-start;
}

.activity-type-icon[b-f58v10tfq6] {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--bs-primary) 0%, #8b5cf6 100%);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.activity-content[b-f58v10tfq6] {
    flex: 1;
    min-width: 0;
}

.title[b-f58v10tfq6] {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.activity-meta[b-f58v10tfq6] {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}

.type-badge[b-f58v10tfq6] {
    background: rgba(112, 72, 232, 0.1);
    color: var(--bs-primary);
    padding: 0.25rem 0.625rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.hours-badge[b-f58v10tfq6] {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 0.25rem 0.625rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.client-badge[b-f58v10tfq6] {
    background: rgba(245, 101, 101, 0.1);
    color: #f56565;
    padding: 0.25rem 0.625rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.client-badge[b-f58v10tfq6]::before {
    content: '🏢';
    font-size: 0.7rem;
}

.delete-btn[b-f58v10tfq6] {
    width: 2rem;
    height: 2rem;
    border: none;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border-radius: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    opacity: 0;
    transform: scale(0.9);
}

.activity-card:hover .delete-btn[b-f58v10tfq6] {
    opacity: 1;
    transform: scale(1);
}

.delete-btn:hover[b-f58v10tfq6] {
    background: rgba(239, 68, 68, 0.2);
    transform: scale(1.05);
}

/* Notes Section */
.notes-section[b-f58v10tfq6] {
    margin-top: 0.5rem;
}

.notes[b-f58v10tfq6] {
    background: #f9fafb;
    border-left: 3px solid var(--bs-primary);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Activity Footer */
.activity-footer[b-f58v10tfq6] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.75rem;
    border-top: 1px solid #f3f4f6;
    font-size: 0.75rem;
    color: #9ca3af;
}

.date[b-f58v10tfq6] {
    font-weight: 500;
}

.project[b-f58v10tfq6] {
    background: #f3f4f6;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    font-weight: 500;
    color: #6b7280;
}

/* Responsive */
@media (max-width: 767px) {
    .activity-card[b-f58v10tfq6] {
        padding: 1.25rem;
    }
    
    .activity-info[b-f58v10tfq6] {
        gap: 0.75rem;
    }
    
    .activity-type-icon[b-f58v10tfq6] {
        width: 2rem;
        height: 2rem;
        font-size: 0.875rem;
    }
    
    .title[b-f58v10tfq6] {
        font-size: 1rem;
    }
    
    .activity-meta[b-f58v10tfq6] {
        gap: 0.5rem;
    }
    
    .delete-btn[b-f58v10tfq6] {
        opacity: 1;
    }
}
/* /Components/ConfirmationModal.razor.rz.scp.css */
.confirmation-modal-backdrop[b-r3kcrvevew] {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    z-index: 2000;
}

.confirmation-modal[b-r3kcrvevew] {
    width: min(100%, 28rem);
    background: white;
    border-radius: 1rem;
    box-shadow: 0 24px 64px rgba(15, 23, 42, 0.22);
    border: 1px solid rgba(148, 163, 184, 0.25);
    overflow: hidden;
}

.confirmation-modal-header[b-r3kcrvevew] {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem 1.25rem 0.75rem;
}

.confirmation-modal-header h4[b-r3kcrvevew] {
    margin: 0;
    color: #1f2937;
    font-size: 1.1rem;
    font-weight: 700;
}

.confirmation-modal-header p[b-r3kcrvevew] {
    margin: 0.35rem 0 0;
    color: #6b7280;
    font-size: 0.9rem;
}

.confirmation-close-btn[b-r3kcrvevew] {
    width: 2rem;
    height: 2rem;
    border: none;
    border-radius: 0.5rem;
    background: transparent;
    color: #6b7280;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
}

.confirmation-close-btn:hover[b-r3kcrvevew] {
    background: #f3f4f6;
    color: #111827;
}

.confirmation-modal-body[b-r3kcrvevew] {
    padding: 0 1.25rem 1rem;
    color: #374151;
}

.confirmation-modal-body p[b-r3kcrvevew] {
    margin: 0;
    line-height: 1.5;
}

.confirmation-modal-actions[b-r3kcrvevew] {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    padding: 1rem 1.25rem 1.25rem;
    background: #f8fafc;
}

@media (max-width: 576px) {
    .confirmation-modal[b-r3kcrvevew] {
        width: 100%;
    }

    .confirmation-modal-actions[b-r3kcrvevew] {
        flex-direction: column-reverse;
    }

    .confirmation-modal-actions .btn[b-r3kcrvevew] {
        width: 100%;
    }
}
/* /Components/FriendlyInputSelect.razor.rz.scp.css */
.friendly-select[b-4cpd2au9nc] {
    position: relative;
    border: 1px solid var(--bs-border-color);
    border-radius: 0.375rem;
    padding: 0.5rem 0.75rem;
    background: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 20;
}

.friendly-select-selected[b-4cpd2au9nc] {
    flex-grow: 1;
}

.friendly-select-selected strong[b-4cpd2au9nc] {
    display: block;
    font-size: 0.95rem;
}

.friendly-select-desc[b-4cpd2au9nc] {
    font-size: 0.8rem;
    color: var(--bs-secondary-color);
    opacity: 0.8;
}

.friendly-select-placeholder[b-4cpd2au9nc] {
    color: var(--bs-secondary-color);
    opacity: 0.6;
    font-size: 0.9rem;
}

.friendly-select-options[b-4cpd2au9nc] {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border: 1px solid var(--bs-border-color);
    border-radius: 0.375rem;
    width: calc(100% - 2rem);
    max-width: 380px;
    margin-top: 4px;
    max-height: 240px;
    overflow-y: auto;
    z-index: 999;
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    list-style: none;
    padding: 0;
    box-sizing: border-box;
}

.friendly-select-options li[b-4cpd2au9nc] {
    padding: 0.6rem 0.9rem;
    cursor: pointer;
}

.friendly-select-options li:hover[b-4cpd2au9nc] {
    background: var(--bs-light);
}

.friendly-select-option-name[b-4cpd2au9nc] {
    font-weight: 500;
    font-size: 0.9rem;
}

.friendly-select-option-desc[b-4cpd2au9nc] {
    font-size: 0.8rem;
    color: var(--bs-secondary-color);
    opacity: 0.8;
}

@media (max-width: 768px) {
    .friendly-select-options[b-4cpd2au9nc] {
        width: 90%;
        max-height: 50vh;
    }
}
/* /Components/LoadingScreen.razor.rz.scp.css */
.loading-screen[b-o7h2vuqxx4] {
    opacity: 0;
    pointer-events: none;
    animation: fadeIn-b-o7h2vuqxx4 0.3s 0.2s forwards;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

@keyframes fadeIn-b-o7h2vuqxx4 {
    to {
        opacity: 1;
        pointer-events: auto;
    }
}

.spinner[b-o7h2vuqxx4] {
    width: 64px;
    height: 64px;
    border: 8px solid #e0e0e0;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    animation: spin-b-o7h2vuqxx4 1s linear infinite;
    margin-bottom: 24px;
}

@keyframes spin-b-o7h2vuqxx4 {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.message[b-o7h2vuqxx4] {
    font-size: 1.25rem;
    color: #333;
    text-align: center;
}

/* /Components/MonthlyActivitiesView.razor.rz.scp.css */
/* Stats section */
.stats-section[b-thap3b7b03] {
    margin-bottom: 2rem;
}

.stats-cards[b-thap3b7b03] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.stat-card[b-thap3b7b03] {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.2s ease;
}

.stat-card:hover[b-thap3b7b03] {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.stat-icon[b-thap3b7b03] {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
}

.stat-card.primary .stat-icon[b-thap3b7b03] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.stat-card.accent .stat-icon[b-thap3b7b03] {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.stat-card.secondary .stat-icon[b-thap3b7b03] {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.stat-card.success .stat-icon[b-thap3b7b03] {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.stat-content[b-thap3b7b03] {
    display: flex;
    flex-direction: column;
}

.stat-value[b-thap3b7b03] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.stat-label[b-thap3b7b03] {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0.25rem 0 0;
}

/* Activities section */
.activities-section[b-thap3b7b03] {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
    overflow: hidden;
}

/* Empty state */
.empty-state[b-thap3b7b03] {
    text-align: center;
    padding: 4rem 2rem;
    color: #6c757d;
}

.empty-icon[b-thap3b7b03] {
    font-size: 4rem;
    color: #dee2e6;
    margin-bottom: 1rem;
}

.empty-state h3[b-thap3b7b03] {
    color: #495057;
    margin-bottom: 0.5rem;
}

.empty-state p[b-thap3b7b03] {
    margin-bottom: 2rem;
}

.btn-primary[b-thap3b7b03] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    margin-right: 1rem;
}

.btn-primary:hover[b-thap3b7b03] {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.btn-secondary[b-thap3b7b03] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-secondary:hover[b-thap3b7b03] {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Table container */
.table-container[b-thap3b7b03] {
    padding: 1.5rem;
}

.table-header[b-thap3b7b03] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f8f9fa;
}

.section-title[b-thap3b7b03] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 600;
}

.section-title i[b-thap3b7b03] {
    color: #667eea;
}

.table-actions[b-thap3b7b03] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.activity-count[b-thap3b7b03] {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Table wrapper */
.table-wrapper[b-thap3b7b03] {
    overflow-x: auto;
}

.activities-table[b-thap3b7b03] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.activities-table th[b-thap3b7b03] {
    background: #f8f9fa;
    color: #495057;
    font-weight: 600;
    padding: 1rem;
    text-align: left;
    border-bottom: 2px solid #dee2e6;
    white-space: nowrap;
}

.activities-table th.text-end[b-thap3b7b03] {
    text-align: right;
}

.activities-table td[b-thap3b7b03] {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #f1f3f4;
    vertical-align: top;
}

.activities-table td.text-end[b-thap3b7b03] {
    text-align: right;
}

/* Clickable activity rows */
.activity-row.clickable[b-thap3b7b03] {
    cursor: pointer;
    user-select: none;
    transition: all 0.2s ease;
}

.activity-row.clickable:hover[b-thap3b7b03] {
    background-color: #e3f2fd !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.15);
}

.activity-row.clickable:active[b-thap3b7b03] {
    transform: translateY(0);
}

/* Arrow icon for clickable indication */
.activity-arrow[b-thap3b7b03] {
    opacity: 0;
    margin-left: 8px;
    font-size: 0.8em;
    color: #667eea;
    transition: opacity 0.2s ease;
}

.activity-row.clickable:hover .activity-arrow[b-thap3b7b03] {
    opacity: 1;
}

/* Enhanced hours badge for clickable rows */
.activity-row.clickable:hover .hours-badge[b-thap3b7b03] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.activity-row.clickable:hover .type-badge[b-thap3b7b03] {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

/* Regular activity row hover (for non-clickable rows if any) */
.activity-row:not(.clickable):hover[b-thap3b7b03] {
    background: #f8f9fa;
}

/* Date cell */
.date-info[b-thap3b7b03] {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.date-day[b-thap3b7b03] {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1;
}

.date-month[b-thap3b7b03] {
    font-size: 0.75rem;
    color: #6c757d;
    text-transform: uppercase;
    font-weight: 500;
}

/* Activity cell */
.activity-info[b-thap3b7b03] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.activity-notes[b-thap3b7b03] {
    font-size: 0.85rem;
    color: #6c757d;
    line-height: 1.4;
}

/* Activity title row */
.activity-title-row[b-thap3b7b03] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.activity-title[b-thap3b7b03] {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
    line-height: 1.4;
}

.client-tag[b-thap3b7b03] {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.2rem 0.5rem;
    background: rgba(245, 101, 101, 0.1);
    color: #f56565;
    border-radius: 0.75rem;
    font-size: 0.7rem;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}

.client-tag i[b-thap3b7b03] {
    font-size: 0.65rem;
}

/* Type badge */
.type-badge[b-thap3b7b03] {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
}

/* Hours badge */
.hours-badge[b-thap3b7b03] {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #e3f2fd;
    color: #1976d2;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.hours-actions[b-thap3b7b03] {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    width: 100%;
}

.row-delete-btn[b-thap3b7b03] {
    width: 2rem;
    height: 2rem;
    border: none;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border-radius: 0.5rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    opacity: 0;
    transform: scale(0.9);
}

.activity-row:hover .row-delete-btn[b-thap3b7b03] {
    opacity: 1;
    transform: scale(1);
}

.row-delete-btn:hover[b-thap3b7b03] {
    background: rgba(239, 68, 68, 0.2);
    transform: scale(1.05);
}

/* Total row */
.total-row[b-thap3b7b03] {
    background: #f8f9fa;
    font-weight: 600;
}

.total-row td[b-thap3b7b03] {
    border-top: 2px solid #dee2e6;
    border-bottom: none;
    padding: 1rem;
}

.total-label[b-thap3b7b03] {
    color: #495057;
}

.total-value[b-thap3b7b03] {
    color: #2c3e50;
}

/* Responsive design */
@media (max-width: 768px) {
    .stats-cards[b-thap3b7b03] {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .stat-card[b-thap3b7b03] {
        padding: 1rem;
    }
    
    .table-header[b-thap3b7b03] {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .table-container[b-thap3b7b03] {
        padding: 1rem;
    }

    .row-delete-btn[b-thap3b7b03] {
        opacity: 1;
        transform: scale(1);
    }
    
    .activities-table th[b-thap3b7b03],
    .activities-table td[b-thap3b7b03] {
        padding: 0.5rem;
    }
}
/* /Components/MonthlyActivityReport.razor.rz.scp.css */
/* Monthly Activity Report Component */

.monthly-report-container[b-vqhex0no9o] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Loading State */
.report-loading[b-vqhex0no9o] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.loading-header[b-vqhex0no9o] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 2rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.loading-header[b-vqhex0no9o]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    z-index: 0;
}

.loading-icon[b-vqhex0no9o] {
    animation: spin-b-vqhex0no9o 1s linear infinite;
}

@keyframes spin-b-vqhex0no9o {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.loading-cards[b-vqhex0no9o] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.loading-card[b-vqhex0no9o] {
    background: white;
    border-radius: 12px;
    height: 120px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.loading-card[b-vqhex0no9o]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    animation: shimmer-b-vqhex0no9o 1.5s infinite;
}

@keyframes shimmer-b-vqhex0no9o {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Report Header */
.report-header[b-vqhex0no9o] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 2rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.report-header[b-vqhex0no9o]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    z-index: 0;
}

.header-content[b-vqhex0no9o] {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.report-icon[b-vqhex0no9o] {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.report-info[b-vqhex0no9o] {
    flex: 1;
}

.report-title[b-vqhex0no9o] {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.report-subtitle[b-vqhex0no9o] {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.report-summary[b-vqhex0no9o] {
    display: flex;
    gap: 2rem;
}

.summary-stat[b-vqhex0no9o] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-value[b-vqhex0no9o] {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-label[b-vqhex0no9o] {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-top: 0.25rem;
}

/* Monthly Breakdown */
.monthly-breakdown[b-vqhex0no9o] {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.breakdown-header[b-vqhex0no9o] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.breakdown-header h3[b-vqhex0no9o] {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--bs-dark);
}

.average-hours[b-vqhex0no9o] {
    font-size: 0.875rem;
    color: var(--bs-secondary);
    background: rgba(102, 126, 234, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 500;
}

.months-grid[b-vqhex0no9o] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.month-card[b-vqhex0no9o] {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.month-card:hover[b-vqhex0no9o] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: white;
}

.month-header[b-vqhex0no9o] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.month-info[b-vqhex0no9o] {
    display: flex;
    flex-direction: column;
}

.month-name[b-vqhex0no9o] {
    font-size: 1rem;
    font-weight: 600;
    color: var(--bs-dark);
}

.month-year[b-vqhex0no9o] {
    font-size: 0.875rem;
    color: var(--bs-secondary);
}

.hours-badge[b-vqhex0no9o] {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.hours-badge.high[b-vqhex0no9o] {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

.hours-badge.medium[b-vqhex0no9o] {
    background: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%);
    color: white;
}

.hours-badge.low[b-vqhex0no9o] {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: white;
}

.month-progress[b-vqhex0no9o] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.progress-bar[b-vqhex0no9o] {
    height: 6px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill[b-vqhex0no9o] {
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 3px;
    transition: width 0.6s ease;
}

.progress-text[b-vqhex0no9o] {
    font-size: 0.75rem;
    color: var(--bs-secondary);
    text-align: center;
    font-weight: 500;
}

/* Statistics Summary */
.stats-summary[b-vqhex0no9o] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.stats-card[b-vqhex0no9o] {
    background: white;
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stats-card:hover[b-vqhex0no9o] {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.stat-item[b-vqhex0no9o] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon[b-vqhex0no9o] {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.stat-icon.productive[b-vqhex0no9o] {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.stat-icon.average[b-vqhex0no9o] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.stat-icon.trend[b-vqhex0no9o] {
    background: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%);
}

.stat-icon.total[b-vqhex0no9o] {
    background: linear-gradient(135deg, #6f42c1 0%, #e83e8c 100%);
}

.stat-details[b-vqhex0no9o] {
    display: flex;
    flex-direction: column;
}

.stat-title[b-vqhex0no9o] {
    font-size: 0.875rem;
    color: var(--bs-secondary);
    font-weight: 500;
}

.stat-info[b-vqhex0no9o] {
    font-size: 1rem;
    color: var(--bs-dark);
    font-weight: 600;
}

/* Empty State */
.empty-report[b-vqhex0no9o] {
    background: white;
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.empty-icon[b-vqhex0no9o] {
    font-size: 4rem;
    color: var(--bs-secondary);
    opacity: 0.5;
    margin-bottom: 1rem;
}

.empty-report h3[b-vqhex0no9o] {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--bs-dark);
    margin-bottom: 0.5rem;
}

.empty-report p[b-vqhex0no9o] {
    color: var(--bs-secondary);
    font-size: 1rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .report-header[b-vqhex0no9o],
    .loading-header[b-vqhex0no9o] {
        padding: 1.5rem;
    }
    
    .header-content[b-vqhex0no9o] {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .report-icon[b-vqhex0no9o] {
        width: 56px;
        height: 56px;
        font-size: 1.75rem;
    }
    
    .report-title[b-vqhex0no9o] {
        font-size: 1.5rem;
    }
    
    .report-summary[b-vqhex0no9o] {
        gap: 1rem;
        justify-content: center;
    }
    
    .stat-value[b-vqhex0no9o] {
        font-size: 1.5rem;
    }
    
    .months-grid[b-vqhex0no9o] {
        grid-template-columns: 1fr;
    }
    
    .breakdown-header[b-vqhex0no9o] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .stats-summary[b-vqhex0no9o],
    .loading-cards[b-vqhex0no9o] {
        grid-template-columns: 1fr;
    }
    
    .monthly-breakdown[b-vqhex0no9o] {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .month-card[b-vqhex0no9o] {
        padding: 0.75rem;
    }
    
    .stats-card[b-vqhex0no9o] {
        padding: 1rem;
    }
    
    .stat-icon[b-vqhex0no9o] {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .empty-report[b-vqhex0no9o] {
        padding: 2rem 1rem;
    }
    
    .empty-icon[b-vqhex0no9o] {
        font-size: 3rem;
    }
}

/* Clickable month cards */
.month-card.clickable[b-vqhex0no9o] {
    cursor: pointer;
    transition: all 0.2s ease;
}

.month-card.clickable:hover[b-vqhex0no9o] {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.month-card.clickable:active[b-vqhex0no9o] {
    transform: translateY(0);
}

/* Arrow icon for clickable indication */
.month-arrow[b-vqhex0no9o] {
    opacity: 0;
    margin-left: 8px;
    font-size: 0.9em;
    transition: opacity 0.2s ease;
}

.month-card.clickable:hover .month-arrow[b-vqhex0no9o] {
    opacity: 1;
}

/* Enhanced hours badge for clickable cards */
.month-card.clickable .hours-badge[b-vqhex0no9o] {
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
}

.month-card.clickable:hover .hours-badge[b-vqhex0no9o] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

/* Ensure text doesn't interfere with click */
.month-card.clickable *[b-vqhex0no9o] {
    pointer-events: none;
}

.month-card.clickable[b-vqhex0no9o] {
    pointer-events: all;
}
/* /Layout/LoginDisplay.razor.rz.scp.css */
/* ====================
   USER INFO CONTAINER
   ==================== */

.user-info[b-4cyzp10wdl] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* ====================
   USER LINK
   ==================== */

.user-link[b-4cyzp10wdl] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.user-link:hover[b-4cyzp10wdl] {
    color: white;
    background: rgba(255, 255, 255, 0.15);
    text-decoration: none;
}

.user-link i[b-4cyzp10wdl] {
    font-size: 1.25rem;
}

.user-name[b-4cyzp10wdl] {
    font-size: 0.95rem;
    white-space: nowrap;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ====================
   LOGOUT BUTTON
   ==================== */

.logout-btn[b-4cyzp10wdl] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.95rem;
}

.logout-btn:hover[b-4cyzp10wdl] {
    color: white;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
}

.logout-btn:focus[b-4cyzp10wdl] {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.logout-btn i[b-4cyzp10wdl] {
    font-size: 1rem;
}

.logout-text[b-4cyzp10wdl] {
    white-space: nowrap;
}

/* ====================
   LOGIN LINK
   ==================== */

.login-link[b-4cyzp10wdl] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.login-link:hover[b-4cyzp10wdl] {
    color: white;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

.login-link i[b-4cyzp10wdl] {
    font-size: 1.1rem;
}

/* ====================
   RESPONSIVE DESIGN
   ==================== */

@media (max-width: 1024px) {
    .user-name[b-4cyzp10wdl],
    .logout-text[b-4cyzp10wdl] {
        display: none;
    }
    
    .user-link[b-4cyzp10wdl],
    .logout-btn[b-4cyzp10wdl] {
        padding: 0.625rem;
    }
    
    .login-link[b-4cyzp10wdl] {
        padding: 0.625rem 1rem;
    }
    
    .login-link span[b-4cyzp10wdl] {
        display: none;
    }
}

@media (max-width: 768px) {
    .user-info[b-4cyzp10wdl] {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
        padding: 1rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 1rem;
    }
    
    .user-link[b-4cyzp10wdl],
    .logout-btn[b-4cyzp10wdl],
    .login-link[b-4cyzp10wdl] {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }
    
    .user-name[b-4cyzp10wdl],
    .logout-text[b-4cyzp10wdl],
    .login-link span[b-4cyzp10wdl] {
        display: inline;
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
/* ====================
   MAIN LAYOUT
   ==================== */

.page[b-lpy0wpi1i6] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: #f8fafc;
}

/* ====================
   TOP NAVIGATION
   ==================== */

.top-nav[b-lpy0wpi1i6] {
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .top-nav[b-lpy0wpi1i6] {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 100 !important;
    }
    
    .main-content[b-lpy0wpi1i6] {
        margin-top: 80px !important;
    }
}

/* ====================
   MAIN CONTENT
   ==================== */

.main-content[b-lpy0wpi1i6] {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.content[b-lpy0wpi1i6] {
    flex: 1;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

/* ====================
   RESPONSIVE DESIGN
   ==================== */

@media (max-width: 768px) {
    .content[b-lpy0wpi1i6] {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .content[b-lpy0wpi1i6] {
        padding: 0.75rem;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
/* ====================
   NAVBAR CONTAINER
   ==================== */

.navbar[b-bkntlh8nee] {
    padding: 0;
    background: transparent;
    width: 100%;
}

.navbar-container[b-bkntlh8nee] {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

/* ====================
   BRAND/LOGO
   ==================== */

.navbar-brand[b-bkntlh8nee] {
    flex-shrink: 0;
}

.brand-link[b-bkntlh8nee] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.brand-link:hover[b-bkntlh8nee] {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.brand-link i[b-bkntlh8nee] {
    font-size: 1.75rem;
}

.brand-text[b-bkntlh8nee] {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: -0.025em;
}

/* ====================
   NAVIGATION LINKS
   ==================== */

.navbar .nav-links-horizontal[b-bkntlh8nee] {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 0.5rem;
    flex: 1;
    justify-content: center;
    margin: 0 2rem;
    list-style: none;
    padding: 0;
    flex-wrap: nowrap;
}

.navbar .nav-links-horizontal .nav-link[b-bkntlh8nee] {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.navbar .nav-links-horizontal .nav-link:hover[b-bkntlh8nee] {
    color: white;
    background: rgba(255, 255, 255, 0.15);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.navbar .nav-links-horizontal .nav-link.active[b-bkntlh8nee] {
    color: white;
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.navbar .nav-links-horizontal .nav-link i[b-bkntlh8nee] {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.navbar .nav-links-horizontal .nav-text[b-bkntlh8nee] {
    white-space: nowrap;
}

/* ====================
   USER AUTHENTICATION
   ==================== */

.navbar-auth[b-bkntlh8nee] {
    flex-shrink: 0;
}

.mobile-auth[b-bkntlh8nee] {
    display: none;
}

.navbar-auth[b-bkntlh8nee]  a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.navbar-auth[b-bkntlh8nee]  a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.15);
    text-decoration: none;
}

.navbar-auth[b-bkntlh8nee]  .btn-link {
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: transparent;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-left: 0.5rem;
}

.navbar-auth[b-bkntlh8nee]  .btn-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
}

/* ====================
   MOBILE NAVIGATION
   ==================== */

.mobile-toggle[b-bkntlh8nee] {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 0.25rem;
}

.mobile-toggle:hover[b-bkntlh8nee] {
    background: rgba(255, 255, 255, 0.15);
}

.hamburger-line[b-bkntlh8nee] {
    width: 1.25rem;
    height: 2px;
    background: white;
    border-radius: 1px;
    transition: all 0.3s ease;
}

/* ====================
   RESPONSIVE DESIGN
   ==================== */

@media (max-width: 1024px) {
    .navbar-container[b-bkntlh8nee] {
        padding: 1rem 1.5rem;
    }
    
    .nav-links-horizontal[b-bkntlh8nee] {
        margin: 0 1rem;
        gap: 0.25rem;
    }
    
    .nav-link[b-bkntlh8nee] {
        padding: 0.625rem 1rem;
        font-size: 0.9rem;
    }
    
    .nav-text[b-bkntlh8nee] {
        display: none;
    }
    
    .nav-link i[b-bkntlh8nee] {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .navbar-container[b-bkntlh8nee] {
        padding: 1rem;
        position: relative;
        justify-content: space-between;
        align-items: center;
    }
    
    .navbar-brand[b-bkntlh8nee] {
        flex-shrink: 0;
    }
    
    .brand-text[b-bkntlh8nee] {
        font-size: 1.1rem !important;
    }
    
    .mobile-toggle[b-bkntlh8nee] {
        display: flex;
        order: 3;
        margin-left: auto;
        margin-right: 0;
        z-index: 200;
        pointer-events: auto;
        position: relative;
    }
    
    .navbar-auth[b-bkntlh8nee] {
        display: none !important;
    }
    
    .nav-links-horizontal[b-bkntlh8nee] {
        position: fixed !important;
        top: 80px !important;
        left: 0 !important;
        right: 0 !important;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
        backdrop-filter: blur(20px) !important;
        flex-direction: column !important;
        gap: 0.5rem !important;
        margin: 0 !important;
        padding: 1.25rem !important;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
        border-top: none !important;
        transform: translateY(-100%) !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        z-index: 150 !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        display: none !important;
        opacity: 0 !important;
        max-height: calc(100vh - 80px) !important;
        overflow-y: auto !important;
    }
    
    .nav-links-horizontal.show[b-bkntlh8nee] {
        transform: translateY(0) !important;
        display: flex !important;
        flex-direction: column !important;
        opacity: 1 !important;
        animation: mobileMenuSlide-b-bkntlh8nee 0.3s ease forwards !important;
    }
    
    .nav-link[b-bkntlh8nee] {
        width: 100% !important;
        justify-content: flex-start !important;
        padding: 1rem 1.25rem !important;
        border-radius: 10px !important;
        margin-bottom: 0 !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 0.625rem !important;
        background: rgba(255, 255, 255, 0.08) !important;
        border: 1px solid rgba(255, 255, 255, 0.12) !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        font-weight: 500 !important;
        box-sizing: border-box !important;
        color: white !important;
        text-decoration: none !important;
        font-size: 0.9rem !important;
    }
    
    .nav-link:hover[b-bkntlh8nee] {
        background: rgba(255, 255, 255, 0.15) !important;
        border-color: rgba(255, 255, 255, 0.25) !important;
        transform: translateX(8px) scale(1.01) !important;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15) !important;
        color: white !important;
        text-decoration: none !important;
    }
    
    .nav-link.active[b-bkntlh8nee] {
        background: rgba(255, 255, 255, 0.2) !important;
        border-color: rgba(255, 255, 255, 0.3) !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
        position: relative !important;
        color: white !important;
    }
    
    .nav-link.active[b-bkntlh8nee]::before {
        content: '' !important;
        position: absolute !important;
        left: 0 !important;
        top: 0 !important;
        bottom: 0 !important;
        width: 4px !important;
        background: white !important;
        border-radius: 0 4px 4px 0 !important;
    }
    
    .nav-link i[b-bkntlh8nee] {
        font-size: 1.1rem !important;
        flex-shrink: 0 !important;
        color: white !important;
        opacity: 0.9 !important;
    }
    
    .nav-text[b-bkntlh8nee] {
        display: inline !important;
        font-size: 0.9rem !important;
        color: white !important;
        font-weight: 500 !important;
        opacity: 0.95 !important;
        white-space: nowrap !important;
    }
    
    /* Add logout button to mobile menu */
    .mobile-auth[b-bkntlh8nee] {
        display: block !important;
        width: 100% !important;
        padding-top: 0.625rem !important;
        margin-top: 0.625rem !important;
        border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
        pointer-events: auto !important;
    }
    
    .mobile-auth[b-bkntlh8nee]  .navbar-nav {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .mobile-auth[b-bkntlh8nee]  .nav-item {
        width: 100% !important;
        margin: 0 !important;
    }
    
    .mobile-auth[b-bkntlh8nee]  .nav-link {
        background: rgba(255, 255, 255, 0.08) !important;
        border: 1px solid rgba(255, 255, 255, 0.12) !important;
        color: white !important;
        padding: 1rem 1.25rem !important;
        border-radius: 10px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 0.625rem !important;
        font-weight: 500 !important;
        text-decoration: none !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        width: 100% !important;
        box-sizing: border-box !important;
        margin: 0 !important;
        font-size: 0.9rem !important;
        text-align: left !important;
        cursor: pointer !important;
        pointer-events: auto !important;
    }
    
    .mobile-auth[b-bkntlh8nee]  .nav-link:hover {
        background: rgba(255, 255, 255, 0.15) !important;
        border-color: rgba(255, 255, 255, 0.25) !important;
        transform: translateX(8px) scale(1.01) !important;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15) !important;
        color: white !important;
        text-decoration: none !important;
    }
    
    /* Animation keyframes */
    @keyframes mobileMenuSlide-b-bkntlh8nee {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Staggered animation for menu items */
    .nav-links-horizontal.show .nav-link[b-bkntlh8nee] {
        animation: slideInItem-b-bkntlh8nee 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards !important;
        opacity: 0 !important;
    }
    
    .nav-links-horizontal.show .nav-link:nth-child(1)[b-bkntlh8nee] {
        animation-delay: 0.05s !important;
    }
    
    .nav-links-horizontal.show .nav-link:nth-child(2)[b-bkntlh8nee] {
        animation-delay: 0.1s !important;
    }
    
    .nav-links-horizontal.show .nav-link:nth-child(3)[b-bkntlh8nee] {
        animation-delay: 0.15s !important;
    }
    
    .nav-links-horizontal.show .nav-link:nth-child(4)[b-bkntlh8nee] {
        animation-delay: 0.2s !important;
    }
    
    .nav-links-horizontal.show .nav-link:nth-child(5)[b-bkntlh8nee] {
        animation-delay: 0.25s !important;
    }
    
    @keyframes slideInItem-b-bkntlh8nee {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

@media (max-width: 576px) {
    .navbar-container[b-bkntlh8nee] {
        padding: 0.75rem;
    }
}

/* ====================
   COLLAPSE FUNCTIONALITY
   ==================== */

/* Desktop: Always show navigation */
@media (min-width: 769px) {
    .nav-links-horizontal[b-bkntlh8nee] {
        display: flex !important;
        flex-direction: row !important;
    }
}

/* Mobile: Hide by default, show when .show class is added */
@media (max-width: 768px) {
    .nav-links-horizontal[b-bkntlh8nee] {
        display: none;
    }
    
    .nav-links-horizontal.show[b-bkntlh8nee] {
        display: flex;
    }
}
/* /Pages/Activities/Daily.razor.rz.scp.css */
/* ====================
   PAGE HEADER SECTION
   ==================== */

.page-header[b-pmfmitxd6h] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem 0;
    margin-bottom: 2rem;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.page-header[b-pmfmitxd6h]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    z-index: 1;
}

.header-content[b-pmfmitxd6h] {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 0 2rem;
}

.header-text .header-title[b-pmfmitxd6h] {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    margin-bottom: 0.25rem;
}

.header-text .header-subtitle[b-pmfmitxd6h] {
    margin: 0;
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 400;
}

/* ====================
   DAY NAVIGATION
   ==================== */

.day-navigation[b-pmfmitxd6h] {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-btn[b-pmfmitxd6h] {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    cursor: pointer;
}

.nav-btn:hover:not(:disabled)[b-pmfmitxd6h] {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.nav-btn:disabled[b-pmfmitxd6h] {
    opacity: 0.4;
    cursor: not-allowed;
}

.current-date[b-pmfmitxd6h] {
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Courier New', monospace;
}

/* ====================
   PAGE CONTENT
   ==================== */

.page-content[b-pmfmitxd6h] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ====================
   LOADING STATE
   ==================== */

.loading-container[b-pmfmitxd6h] {
    text-align: center;
    padding: 4rem 2rem;
    color: #6c757d;
}

.loading-spinner[b-pmfmitxd6h] {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: pulse-b-pmfmitxd6h 2s infinite;
}

.loading-text[b-pmfmitxd6h] {
    font-size: 1.1rem;
    margin: 0;
}

@keyframes pulse-b-pmfmitxd6h {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* ====================
   EMPTY STATE
   ==================== */

.empty-state[b-pmfmitxd6h] {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(145deg, #f8f9fa, #e9ecef);
    border-radius: 16px;
    border: 1px solid #dee2e6;
}

.empty-icon[b-pmfmitxd6h] {
    font-size: 4rem;
    color: #adb5bd;
    margin-bottom: 1.5rem;
}

.empty-title[b-pmfmitxd6h] {
    color: #495057;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.empty-description[b-pmfmitxd6h] {
    color: #6c757d;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.empty-actions .btn[b-pmfmitxd6h] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.empty-actions .btn:hover[b-pmfmitxd6h] {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* ====================
   ACTIVITIES SUMMARY
   ==================== */

.activities-summary[b-pmfmitxd6h] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.summary-card[b-pmfmitxd6h] {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.summary-card:hover[b-pmfmitxd6h] {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.summary-icon[b-pmfmitxd6h] {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.summary-info[b-pmfmitxd6h] {
    flex: 1;
}

.summary-value[b-pmfmitxd6h] {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.25rem;
}

.summary-label[b-pmfmitxd6h] {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ====================
   ACTIVITIES SECTION
   ==================== */

.activities-section[b-pmfmitxd6h] {
    margin-top: 2rem;
}

.section-title[b-pmfmitxd6h] {
    color: #2d3748;
    margin-bottom: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    font-size: 1.5rem;
}

.activity-cards[b-pmfmitxd6h] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}

/* ====================
   RESPONSIVE DESIGN
   ==================== */

@media (max-width: 768px) {
    .header-content[b-pmfmitxd6h] {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 0 1rem;
    }

    .header-text .header-title[b-pmfmitxd6h] {
        font-size: 1.5rem;
    }

    .day-navigation[b-pmfmitxd6h] {
        align-self: stretch;
        justify-content: space-between;
    }

    .current-date[b-pmfmitxd6h] {
        padding: 0 0.5rem;
        font-size: 0.85rem;
    }

    .nav-btn[b-pmfmitxd6h] {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }

    .nav-btn span[b-pmfmitxd6h] {
        display: none;
    }

    .activities-summary[b-pmfmitxd6h] {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .summary-card[b-pmfmitxd6h] {
        padding: 1rem;
    }

    .activity-cards[b-pmfmitxd6h] {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .section-title[b-pmfmitxd6h] {
        font-size: 1.25rem;
    }

    .page-content[b-pmfmitxd6h] {
        padding: 0 0.5rem;
    }
}

@media (max-width: 480px) {
    .page-header[b-pmfmitxd6h] {
        margin-bottom: 1rem;
        border-radius: 8px;
    }

    .header-text .header-title[b-pmfmitxd6h] {
        font-size: 1.25rem;
    }

    .header-text .header-subtitle[b-pmfmitxd6h] {
        font-size: 1rem;
    }

    .summary-value[b-pmfmitxd6h] {
        font-size: 1.5rem;
    }

    .summary-icon[b-pmfmitxd6h] {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .empty-state[b-pmfmitxd6h] {
        padding: 2rem 1rem;
    }

    .empty-icon[b-pmfmitxd6h] {
        font-size: 3rem;
    }
}
/* /Pages/Activities/Details.razor.rz.scp.css */
/* Main Container */
.details-container[b-mv54x1jiws] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem;
    min-height: calc(100vh - 4rem);
}

/* Navigation */
.details-nav[b-mv54x1jiws] {
    margin-bottom: 1.5rem;
}

.btn-back[b-mv54x1jiws] {
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(0,0,0,0.1);
    color: #6b7280;
    padding: 0.625rem 1rem;
    border-radius: 0.75rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
}

.btn-back:hover[b-mv54x1jiws] {
    background: white;
    color: #374151;
    transform: translateX(-2px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Header Section */
.details-header[b-mv54x1jiws] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--bs-primary) 0%, #8b5cf6 100%);
    border-radius: 1rem;
    color: white;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.header-content[b-mv54x1jiws] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.activity-icon[b-mv54x1jiws] {
    width: 4rem;
    height: 4rem;
    background: rgba(255,255,255,0.2);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    backdrop-filter: blur(10px);
}

.header-text[b-mv54x1jiws] {
    flex: 1;
}

.activity-title[b-mv54x1jiws] {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}

.activity-meta[b-mv54x1jiws] {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.activity-type-badge[b-mv54x1jiws] {
    background: rgba(255,255,255,0.25);
    padding: 0.375rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.activity-project[b-mv54x1jiws] {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

.btn-edit[b-mv54x1jiws] {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.btn-edit:hover[b-mv54x1jiws] {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

/* Readonly Indicator */
.readonly-indicator[b-mv54x1jiws] {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.8);
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
}

.readonly-indicator i[b-mv54x1jiws] {
    opacity: 0.7;
}

/* Main Content Grid */
.details-grid[b-mv54x1jiws] {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

/* Info Cards */
.info-cards[b-mv54x1jiws] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-card[b-mv54x1jiws] {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.2s ease;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.info-card:hover[b-mv54x1jiws] {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.info-card.primary[b-mv54x1jiws] {
    border-left: 4px solid var(--bs-primary);
}

.info-card.accent[b-mv54x1jiws] {
    border-left: 4px solid #10b981;
}

.info-card.secondary[b-mv54x1jiws] {
    border-left: 4px solid #f59e0b;
}

.info-card.client[b-mv54x1jiws] {
    border-left: 4px solid #f56565;
}

.info-card.activity-type[b-mv54x1jiws] {
    border-left: 4px solid #8b5cf6;
}

.info-card.project[b-mv54x1jiws] {
    border-left: 4px solid #06b6d4;
}

.info-icon[b-mv54x1jiws] {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.info-card.primary .info-icon[b-mv54x1jiws] {
    background: rgba(112, 72, 232, 0.1);
    color: var(--bs-primary);
}

.info-card.accent .info-icon[b-mv54x1jiws] {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.info-card.secondary .info-icon[b-mv54x1jiws] {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.info-card.client .info-icon[b-mv54x1jiws] {
    background: rgba(245, 101, 101, 0.1);
    color: #f56565;
}

.info-card.activity-type .info-icon[b-mv54x1jiws] {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.info-card.project .info-icon[b-mv54x1jiws] {
    background: rgba(6, 182, 212, 0.1);
    color: #06b6d4;
}

.info-content[b-mv54x1jiws] {
    flex: 1;
}

.info-label[b-mv54x1jiws] {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.info-value[b-mv54x1jiws] {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
}

/* Notes Section */
.notes-section[b-mv54x1jiws] {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.section-title[b-mv54x1jiws] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.section-title i[b-mv54x1jiws] {
    color: var(--bs-primary);
}

.notes-content[b-mv54x1jiws] {
    font-size: 1rem;
    line-height: 1.6;
    color: #374151;
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border-left: 4px solid var(--bs-primary);
    white-space: pre-wrap;
}

/* Empty Notes State */
.notes-section.empty .empty-state[b-mv54x1jiws] {
    text-align: center;
    padding: 2rem;
    color: #9ca3af;
}

.empty-state i[b-mv54x1jiws] {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    opacity: 0.5;
}

.empty-state p[b-mv54x1jiws] {
    margin: 0 0 1rem 0;
    font-size: 0.95rem;
}

.btn-link[b-mv54x1jiws] {
    background: none;
    border: none;
    color: var(--bs-primary);
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 0;
}

.btn-link:hover[b-mv54x1jiws] {
    color: #8b5cf6;
}

/* Additional Details */
.additional-details[b-mv54x1jiws] {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.details-list[b-mv54x1jiws] {
    display: grid;
    gap: 1rem;
}

.detail-item[b-mv54x1jiws] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.detail-item:last-child[b-mv54x1jiws] {
    border-bottom: none;
}

.detail-label[b-mv54x1jiws] {
    font-weight: 500;
    color: #6b7280;
    font-size: 0.875rem;
}

.detail-value[b-mv54x1jiws] {
    font-weight: 600;
    color: #1f2937;
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    font-size: 0.875rem;
    background: #f3f4f6;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
}

/* Modal/Drawer styles - enhanced */
.drawer-backdrop[b-mv54x1jiws] {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    z-index: 1010;
}

.activity-form-container[b-mv54x1jiws] {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top-left-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
    padding: 1.5rem 1.5rem 2rem;
    z-index: 1020;
    animation: slide-up-b-mv54x1jiws 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    max-height: 100vh;
    box-shadow: 0 -8px 32px rgba(0,0,0,0.2);
}

/* Desktop modal behavior */
@media (min-width: 768px) {
    .activity-form-container[b-mv54x1jiws] {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        bottom: auto;
        right: auto;
        width: 480px;
        max-width: 90vw;
        border-radius: 1rem;
        box-shadow: 0 20px 64px rgba(0,0,0,0.3);
        animation: fade-in-b-mv54x1jiws 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    }
}

@media (max-width: 767px) {
    .activity-form-container[b-mv54x1jiws] {
        border-radius: 0;
    }
    
    .details-container[b-mv54x1jiws] {
        padding: 1rem;
    }
    
    .details-header[b-mv54x1jiws] {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        padding: 1.5rem;
    }
    
    .header-content[b-mv54x1jiws] {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .activity-title[b-mv54x1jiws] {
        font-size: 1.5rem;
    }
    
    .activity-meta[b-mv54x1jiws] {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .info-cards[b-mv54x1jiws] {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .info-card[b-mv54x1jiws] {
        padding: 1.25rem;
    }
    
    .additional-details[b-mv54x1jiws],
    .notes-section[b-mv54x1jiws] {
        padding: 1.5rem;
    }
    
    .form-actions[b-mv54x1jiws] {
        flex-direction: column;
    }
}

@keyframes slide-up-b-mv54x1jiws {
    from { 
        transform: translateY(100%);
        opacity: 0;
    }
    to { 
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fade-in-b-mv54x1jiws {
    from { 
        opacity: 0; 
        transform: translate(-50%, -45%) scale(0.95);
    }
    to { 
        opacity: 1; 
        transform: translate(-50%, -50%) scale(1);
    }
}

.activity-form-container .close-btn[b-mv54x1jiws] {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: #6b7280;
    font-size: 1.25rem;
    z-index: 15;
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.activity-form-container .close-btn:hover[b-mv54x1jiws] {
    background: #f3f4f6;
    color: #374151;
}

.activity-form-container .close-btn .bi[b-mv54x1jiws] {
    pointer-events: none;
}

/* Form Header */
.form-header[b-mv54x1jiws] {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.form-icon[b-mv54x1jiws] {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--bs-primary) 0%, #8b5cf6 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.form-header h4[b-mv54x1jiws] {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
}

.form-subtitle[b-mv54x1jiws] {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
}

.form-group[b-mv54x1jiws] {
    margin-bottom: 1.25rem;
}

.form-group label[b-mv54x1jiws] {
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
    display: block;
}

.optional[b-mv54x1jiws] {
    font-weight: 400;
    color: #9ca3af;
    font-size: 0.85rem;
}

.form-control[b-mv54x1jiws] {
    border-radius: 0.75rem;
    border: 1.5px solid #e5e7eb;
    transition: all 0.2s ease;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
}

.form-control:focus[b-mv54x1jiws] {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 3px rgba(112, 72, 232, 0.1);
    outline: none;
}

.form-control[b-mv54x1jiws]::placeholder {
    color: #9ca3af;
}

/* Form Actions */
.form-actions[b-mv54x1jiws] {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.btn[b-mv54x1jiws] {
    flex: 1;
    padding: 0.875rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.btn-primary[b-mv54x1jiws] {
    background: linear-gradient(135deg, var(--bs-primary) 0%, #8b5cf6 100%);
    color: white;
}

.btn-primary:hover[b-mv54x1jiws] {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(112, 72, 232, 0.3);
}

.btn-secondary[b-mv54x1jiws] {
    background: #f3f4f6;
    color: #6b7280;
    border: 1px solid #e5e7eb;
}

.btn-secondary:hover[b-mv54x1jiws] {
    background: #e5e7eb;
    color: #374151;
}
/* /Pages/Activities/Monthly.razor.rz.scp.css */
/* Loading State */
.loading-container[b-ztoneo1iwy] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    color: #6b7280;
}

.loading-spinner[b-ztoneo1iwy] {
    font-size: 2rem;
    margin-bottom: 1rem;
    animation: spin-b-ztoneo1iwy 1s linear infinite;
}

@keyframes spin-b-ztoneo1iwy {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Page Header */
.page-header[b-ztoneo1iwy] {
    background: linear-gradient(135deg, var(--bs-primary) 0%, #8b5cf6 100%);
    border-radius: 1.5rem;
    padding: 2rem;
    margin-bottom: 2rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header[b-ztoneo1iwy]::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(100px, -100px);
}

.header-content[b-ztoneo1iwy] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.header-info[b-ztoneo1iwy] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-icon[b-ztoneo1iwy] {
    width: 4rem;
    height: 4rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.page-title[b-ztoneo1iwy] {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

.page-subtitle[b-ztoneo1iwy] {
    margin: 0.25rem 0 0 0;
    opacity: 0.9;
    font-size: 1rem;
}

/* Month Navigation */
.month-navigation[b-ztoneo1iwy] {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 0.5rem;
}

.nav-btn[b-ztoneo1iwy] {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-btn:hover:not(:disabled)[b-ztoneo1iwy] {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.nav-btn:disabled[b-ztoneo1iwy] {
    opacity: 0.5;
    cursor: not-allowed;
}

.current-month[b-ztoneo1iwy] {
    padding: 0 1rem;
    font-weight: 600;
    font-size: 1rem;
}

/* Stats Section */
.stats-section[b-ztoneo1iwy] {
    margin-bottom: 2rem;
}

.stats-cards[b-ztoneo1iwy] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.stat-card[b-ztoneo1iwy] {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.2s ease;
}

.stat-card:hover[b-ztoneo1iwy] {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.stat-icon[b-ztoneo1iwy] {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
}

.stat-card.primary .stat-icon[b-ztoneo1iwy] {
    background: linear-gradient(135deg, var(--bs-primary) 0%, #8b5cf6 100%);
}

.stat-card.accent .stat-icon[b-ztoneo1iwy] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.stat-card.secondary .stat-icon[b-ztoneo1iwy] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.stat-card.success .stat-icon[b-ztoneo1iwy] {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.stat-value[b-ztoneo1iwy] {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1;
}

.stat-label[b-ztoneo1iwy] {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
    margin-top: 0.25rem;
}

/* Activities Section */
.activities-section[b-ztoneo1iwy] {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0,0,0,0.06);
    overflow: hidden;
}

.table-container[b-ztoneo1iwy] {
    padding: 2rem;
}

.table-header[b-ztoneo1iwy] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f3f4f6;
}

.section-title[b-ztoneo1iwy] {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.table-actions[b-ztoneo1iwy] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.activity-count[b-ztoneo1iwy] {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

/* Table Styling */
.table-wrapper[b-ztoneo1iwy] {
    overflow-x: auto;
    border-radius: 0.75rem;
    border: 1px solid #f3f4f6;
}

.activities-table[b-ztoneo1iwy] {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.activities-table th[b-ztoneo1iwy] {
    background: #f9fafb;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: #374151;
    font-size: 0.875rem;
    border-bottom: 1px solid #e5e7eb;
}

.activities-table td[b-ztoneo1iwy] {
    padding: 1rem;
    border-bottom: 1px solid #f3f4f6;
}

.activity-row[b-ztoneo1iwy] {
    cursor: pointer;
    transition: all 0.2s ease;
}

.activity-row:hover[b-ztoneo1iwy] {
    background: #f9fafb;
}

.activity-row:last-child td[b-ztoneo1iwy] {
    border-bottom: none;
}

/* Table Cells */
.date-cell[b-ztoneo1iwy] {
    width: 80px;
}

.date-info[b-ztoneo1iwy] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.date-day[b-ztoneo1iwy] {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1;
}

.date-month[b-ztoneo1iwy] {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.activity-cell[b-ztoneo1iwy] {
    min-width: 200px;
}

.activity-title[b-ztoneo1iwy] {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.activity-notes[b-ztoneo1iwy] {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.type-cell[b-ztoneo1iwy] {
    width: 150px;
}

.type-badge[b-ztoneo1iwy] {
    background: rgba(112, 72, 232, 0.1);
    color: var(--bs-primary);
    padding: 0.375rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
}

.hours-cell[b-ztoneo1iwy] {
    width: 100px;
}

.hours-badge[b-ztoneo1iwy] {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 0.375rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.text-end[b-ztoneo1iwy] {
    text-align: right;
}

/* Total Row */
.total-row[b-ztoneo1iwy] {
    background: #f9fafb;
}

.total-row td[b-ztoneo1iwy] {
    padding: 1.25rem 1rem;
    border-top: 2px solid #e5e7eb;
    border-bottom: none;
}

.total-label[b-ztoneo1iwy] {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
}

.total-value[b-ztoneo1iwy] {
    font-size: 1.125rem;
    font-weight: 700;
    color: #10b981;
}

/* Empty State */
.empty-state[b-ztoneo1iwy] {
    text-align: center;
    padding: 4rem 2rem;
    color: #6b7280;
}

.empty-icon[b-ztoneo1iwy] {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    color: #9ca3af;
}

.empty-state h3[b-ztoneo1iwy] {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
}

.empty-state p[b-ztoneo1iwy] {
    margin: 0 0 1.5rem 0;
    color: #6b7280;
}

.btn-primary[b-ztoneo1iwy] {
    background: linear-gradient(135deg, var(--bs-primary) 0%, #8b5cf6 100%);
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover[b-ztoneo1iwy] {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(112, 72, 232, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content[b-ztoneo1iwy] {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .page-header[b-ztoneo1iwy] {
        padding: 1.5rem;
    }
    
    .month-navigation[b-ztoneo1iwy] {
        width: 100%;
        justify-content: space-between;
        padding: 0.75rem;
    }
    
    .nav-btn[b-ztoneo1iwy] {
        padding: 0.625rem 0.875rem;
        font-size: 0.875rem;
        flex-shrink: 0;
    }
    
    .current-month[b-ztoneo1iwy] {
        padding: 0 0.5rem;
        font-size: 0.875rem;
        text-align: center;
        min-width: 0;
        flex-shrink: 1;
    }
    
    .stats-cards[b-ztoneo1iwy] {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-card[b-ztoneo1iwy] {
        padding: 1rem;
    }
    
    .stat-icon[b-ztoneo1iwy] {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }
    
    .stat-value[b-ztoneo1iwy] {
        font-size: 1.5rem;
    }
    
    .table-container[b-ztoneo1iwy] {
        padding: 1rem;
    }
    
    .table-header[b-ztoneo1iwy] {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .activities-table th[b-ztoneo1iwy],
    .activities-table td[b-ztoneo1iwy] {
        padding: 0.75rem 0.5rem;
    }
    
    .date-info[b-ztoneo1iwy] {
        align-items: flex-start;
    }
    
    .activity-notes[b-ztoneo1iwy] {
        -webkit-line-clamp: 1;
        line-clamp: 1;
    }
}

@media (max-width: 480px) {
    .month-navigation[b-ztoneo1iwy] {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem;
    }
    
    .nav-btn[b-ztoneo1iwy] {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1rem;
    }
    
    .current-month[b-ztoneo1iwy] {
        order: -1;
        padding: 0.5rem;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 0.5rem;
        font-weight: 600;
    }
    
    .stats-cards[b-ztoneo1iwy] {
        grid-template-columns: 1fr;
    }
    
    .activities-table th:nth-child(3)[b-ztoneo1iwy],
    .activities-table td:nth-child(3)[b-ztoneo1iwy] {
        display: none;
    }
    
    .type-badge[b-ztoneo1iwy] {
        display: none;
    }
}
/* /Pages/ActivityTypes.razor.rz.scp.css */
/* Header Section */
.page-header[b-5xzkvwo61s] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header[b-5xzkvwo61s]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    z-index: 0;
}

.header-content[b-5xzkvwo61s] {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-icon[b-5xzkvwo61s] {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    backdrop-filter: blur(10px);
}

.header-text[b-5xzkvwo61s] {
    flex: 1;
}

.header-text h1[b-5xzkvwo61s] {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-text p[b-5xzkvwo61s] {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.header-stats[b-5xzkvwo61s] {
    display: flex;
    gap: 1.5rem;
}

.stat-item[b-5xzkvwo61s] {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number[b-5xzkvwo61s] {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label[b-5xzkvwo61s] {
    font-size: 0.875rem;
    opacity: 0.9;
    text-align: center;
}

/* Activity Types Section */
.activity-types-section[b-5xzkvwo61s] {
    margin-bottom: 2rem;
}

.types-grid[b-5xzkvwo61s] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}

.activity-type-card[b-5xzkvwo61s] {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.activity-type-card:hover[b-5xzkvwo61s] {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.activity-icon[b-5xzkvwo61s] {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.activity-content[b-5xzkvwo61s] {
    flex: 1;
}

.activity-name[b-5xzkvwo61s] {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--bs-dark);
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
}

.activity-description[b-5xzkvwo61s] {
    color: var(--bs-secondary);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0 0 1rem 0;
}

.activity-meta[b-5xzkvwo61s] {
    display: flex;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.meta-item[b-5xzkvwo61s] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--bs-secondary);
    font-size: 0.75rem;
    font-weight: 500;
}

.meta-item i[b-5xzkvwo61s] {
    color: #28a745;
}

/* Activity Type Color Variations */
.product-engineering-type .activity-icon[b-5xzkvwo61s] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.research-type .activity-icon[b-5xzkvwo61s] {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.business-development-type .activity-icon[b-5xzkvwo61s] {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.operations-type .activity-icon[b-5xzkvwo61s] {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.marketing-type .activity-icon[b-5xzkvwo61s] {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.sales-type .activity-icon[b-5xzkvwo61s] {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.customer-support-type .activity-icon[b-5xzkvwo61s] {
    background: linear-gradient(135deg, #a8caba 0%, #5d4e75 100%);
}

.onboarding-type .activity-icon[b-5xzkvwo61s] {
    background: linear-gradient(135deg, #b721ff 0%, #21d4fd 100%);
}

.other-type .activity-icon[b-5xzkvwo61s] {
    background: linear-gradient(135deg, #bdc3c7 0%, #2c3e50 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header[b-5xzkvwo61s] {
        padding: 1.5rem;
    }
    
    .header-content[b-5xzkvwo61s] {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .header-icon[b-5xzkvwo61s] {
        width: 56px;
        height: 56px;
        font-size: 1.75rem;
    }
    
    .header-text h1[b-5xzkvwo61s] {
        font-size: 1.75rem;
    }
    
    .header-text p[b-5xzkvwo61s] {
        font-size: 1rem;
    }
    
    .header-stats[b-5xzkvwo61s] {
        justify-content: center;
    }
    
    .types-grid[b-5xzkvwo61s] {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .activity-type-card[b-5xzkvwo61s] {
        padding: 1rem;
    }
    
    .activity-icon[b-5xzkvwo61s] {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .stat-item[b-5xzkvwo61s] {
        padding: 0.75rem;
    }
    
    .stat-number[b-5xzkvwo61s] {
        font-size: 1.5rem;
    }
    
    .stat-label[b-5xzkvwo61s] {
        font-size: 0.75rem;
    }
    
    .activity-name[b-5xzkvwo61s] {
        font-size: 1.125rem;
    }
    
    .activity-description[b-5xzkvwo61s] {
        font-size: 0.8125rem;
    }
    
    .activity-meta[b-5xzkvwo61s] {
        flex-direction: column;
        gap: 0.5rem;
    }
}
/* /Pages/Clients/Client.razor.rz.scp.css */
/* Main Container */
.client-container[b-5yict9nnzo] {
    min-height: calc(100vh - 4rem);
    padding-bottom: 2rem;
}

/* Loading State */
.loading-container[b-5yict9nnzo] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    gap: 1rem;
    color: var(--bs-secondary);
}

.loading-spinner[b-5yict9nnzo] {
    font-size: 2rem;
    animation: spin-b-5yict9nnzo 1s linear infinite;
}

@keyframes spin-b-5yict9nnzo {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header Section */
.page-header[b-5yict9nnzo] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 2rem;
    margin: 0 0 2rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header[b-5yict9nnzo]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    z-index: 0;
}

.header-content[b-5yict9nnzo] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.header-icon[b-5yict9nnzo] {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    backdrop-filter: blur(10px);
}

.header-text[b-5yict9nnzo] {
    flex: 1;
}

.header-text h1[b-5yict9nnzo] {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-text p[b-5yict9nnzo] {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.back-button[b-5yict9nnzo] {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.back-button:hover[b-5yict9nnzo] {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(2px);
}

.back-button i[b-5yict9nnzo] {
    font-size: 1.25rem;
}

/* Stats Section */
.stats-section[b-5yict9nnzo] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card[b-5yict9nnzo] {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
}

.stat-card:hover[b-5yict9nnzo] {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.stat-icon[b-5yict9nnzo] {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.stat-card.primary .stat-icon[b-5yict9nnzo] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.stat-card.accent .stat-icon[b-5yict9nnzo] {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.stat-card.success .stat-icon[b-5yict9nnzo] {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

.stat-card.info .stat-icon[b-5yict9nnzo] {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    color: white;
}

.stat-content[b-5yict9nnzo] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-value[b-5yict9nnzo] {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1;
}

.stat-label[b-5yict9nnzo] {
    font-size: 0.875rem;
    color: #6c757d;
    font-weight: 500;
}

/* Summary Section */
.summary-section[b-5yict9nnzo] {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.section-header[b-5yict9nnzo] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f1f3f4;
}

.section-header h3[b-5yict9nnzo] {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-header h3 i[b-5yict9nnzo] {
    color: #667eea;
}

.activity-count[b-5yict9nnzo] {
    font-size: 0.875rem;
    color: #6c757d;
    font-weight: 500;
}

.summary-grid[b-5yict9nnzo] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.summary-card[b-5yict9nnzo] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 0.75rem;
    transition: all 0.2s ease;
}

.summary-card:hover[b-5yict9nnzo] {
    background: #e9ecef;
    transform: translateX(4px);
}

.summary-icon[b-5yict9nnzo] {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    color: white;
}

.summary-icon.type-engineering[b-5yict9nnzo] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.summary-icon.type-operations[b-5yict9nnzo] {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.summary-icon.type-business[b-5yict9nnzo] {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.summary-icon.type-research[b-5yict9nnzo] {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.summary-icon.type-marketing[b-5yict9nnzo] {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.summary-icon.type-sales[b-5yict9nnzo] {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.summary-icon.type-onboarding[b-5yict9nnzo] {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.summary-icon.type-support[b-5yict9nnzo] {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
}

.summary-icon.type-other[b-5yict9nnzo] {
    background: linear-gradient(135deg, #fbc2eb 0%, #a6c1ee 100%);
}

.summary-icon.user[b-5yict9nnzo] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.summary-info[b-5yict9nnzo] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.summary-label[b-5yict9nnzo] {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.875rem;
}

.summary-value[b-5yict9nnzo] {
    font-size: 1.25rem;
    font-weight: 700;
    color: #667eea;
}

.summary-percentage[b-5yict9nnzo] {
    font-size: 0.75rem;
    color: #6c757d;
}

/* Activities Section */
.activities-section[b-5yict9nnzo] {
    background: white;
    border-radius: 1rem;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    overflow: hidden;
}

.table-container[b-5yict9nnzo] {
    padding: 1.5rem;
}

.table-header[b-5yict9nnzo] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f8f9fa;
}

.section-title[b-5yict9nnzo] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 600;
}

.section-title i[b-5yict9nnzo] {
    color: #667eea;
}

.table-actions[b-5yict9nnzo] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.activity-count[b-5yict9nnzo] {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
}

.table-wrapper[b-5yict9nnzo] {
    overflow-x: auto;
}

.activities-table[b-5yict9nnzo] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.activities-table th[b-5yict9nnzo] {
    background: #f8f9fa;
    color: #495057;
    font-weight: 600;
    padding: 1rem;
    text-align: left;
    border-bottom: 2px solid #dee2e6;
    white-space: nowrap;
}

.activities-table th.text-end[b-5yict9nnzo] {
    text-align: right;
}

.activities-table td[b-5yict9nnzo] {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #f1f3f4;
    vertical-align: top;
}

.activities-table td.text-end[b-5yict9nnzo] {
    text-align: right;
}

/* Clickable activity rows */
.activity-row.clickable[b-5yict9nnzo] {
    cursor: pointer;
    user-select: none;
    transition: all 0.2s ease;
}

.activity-row.clickable:hover[b-5yict9nnzo] {
    background-color: #e3f2fd !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.15);
}

.activity-row.clickable:active[b-5yict9nnzo] {
    transform: translateY(0);
}

/* Arrow icon for clickable indication */
.activity-arrow[b-5yict9nnzo] {
    opacity: 0;
    margin-left: 8px;
    font-size: 0.8em;
    color: #667eea;
    transition: opacity 0.2s ease;
}

.activity-row.clickable:hover .activity-arrow[b-5yict9nnzo] {
    opacity: 1;
}

/* Enhanced hours badge for clickable rows */
.activity-row.clickable:hover .hours-badge[b-5yict9nnzo] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.activity-row.clickable:hover .type-badge[b-5yict9nnzo] {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

/* Date cell */
.date-cell[b-5yict9nnzo] {
    min-width: 60px;
}

.date-info[b-5yict9nnzo] {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.date-day[b-5yict9nnzo] {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1;
}

.date-month[b-5yict9nnzo] {
    font-size: 0.75rem;
    color: #6c757d;
    text-transform: uppercase;
    font-weight: 500;
}

/* Activity cell */
.activity-cell[b-5yict9nnzo] {
    min-width: 200px;
}

.activity-info[b-5yict9nnzo] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.activity-title-row[b-5yict9nnzo] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.activity-title[b-5yict9nnzo] {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
    line-height: 1.4;
}

.activity-notes[b-5yict9nnzo] {
    font-size: 0.85rem;
    color: #6c757d;
    line-height: 1.4;
}

.user-cell[b-5yict9nnzo] {
    min-width: 120px;
}

.user-name[b-5yict9nnzo] {
    color: #495057;
    font-size: 0.875rem;
}

.type-cell[b-5yict9nnzo] {
    min-width: 150px;
}

.type-badge[b-5yict9nnzo] {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
}

.hours-cell[b-5yict9nnzo] {
    min-width: 100px;
}

.hours-badge[b-5yict9nnzo] {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #e3f2fd;
    color: #1976d2;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Total row */
.total-row[b-5yict9nnzo] {
    background: #f8f9fa;
    font-weight: 600;
}

.total-row td[b-5yict9nnzo] {
    border-top: 2px solid #dee2e6;
    border-bottom: none;
    padding: 1rem;
}

.total-label[b-5yict9nnzo] {
    color: #495057;
}

.total-value[b-5yict9nnzo] {
    color: #2c3e50;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .stats-section[b-5yict9nnzo] {
        grid-template-columns: repeat(2, 1fr);
    }

    .summary-grid[b-5yict9nnzo] {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 767px) {
    .client-container[b-5yict9nnzo] {
        padding-bottom: 1rem;
    }

    .page-header[b-5yict9nnzo] {
        padding: 1.5rem;
        margin: 0 1rem 1.5rem 1rem;
    }

    .back-button[b-5yict9nnzo] {
        width: 2rem;
        height: 2rem;
    }

    .back-button i[b-5yict9nnzo] {
        font-size: 1rem;
    }

    .header-content[b-5yict9nnzo] {
        gap: 1rem;
    }

    .header-icon[b-5yict9nnzo] {
        width: 3rem;
        height: 3rem;
        font-size: 1.5rem;
    }

    .header-text h1[b-5yict9nnzo] {
        font-size: 1.5rem;
    }

    .header-text p[b-5yict9nnzo] {
        font-size: 0.875rem;
    }

    .stats-section[b-5yict9nnzo] {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 0 1rem 1.5rem 1rem;
    }

    .stat-card[b-5yict9nnzo] {
        padding: 1rem;
    }

    .stat-icon[b-5yict9nnzo] {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.25rem;
    }

    .stat-value[b-5yict9nnzo] {
        font-size: 1.5rem;
    }

    .summary-section[b-5yict9nnzo] {
        margin: 0 1rem 1.5rem 1rem;
        padding: 1rem;
    }

    .section-header[b-5yict9nnzo] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .summary-grid[b-5yict9nnzo] {
        grid-template-columns: 1fr;
    }

    .activities-section[b-5yict9nnzo] {
        margin: 0 1rem 1rem 1rem;
        padding: 0;
    }

    .table-container[b-5yict9nnzo] {
        padding: 1rem;
    }

    .table-header[b-5yict9nnzo] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .table-wrapper[b-5yict9nnzo] {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .activities-table[b-5yict9nnzo] {
        min-width: 600px;
    }

    .activities-table th[b-5yict9nnzo],
    .activities-table td[b-5yict9nnzo] {
        padding: 0.5rem;
    }
}
/* /Pages/Clients/Clients.razor.rz.scp.css */
/* Main Container */
.clients-container[b-39zv5stvw1] {
    min-height: calc(100vh - 4rem);
}

/* Loading State */
.loading-container[b-39zv5stvw1] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    gap: 1rem;
    color: var(--bs-secondary);
}

.loading-spinner[b-39zv5stvw1] {
    font-size: 2rem;
    animation: spin-b-39zv5stvw1 1s linear infinite;
}

@keyframes spin-b-39zv5stvw1 {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header Section */
.clients-header[b-39zv5stvw1] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--bs-primary) 0%, #8b5cf6 100%);
    border-radius: 1rem;
    color: white;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.header-content[b-39zv5stvw1] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.header-icon[b-39zv5stvw1] {
    width: 4rem;
    height: 4rem;
    background: rgba(255,255,255,0.2);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    backdrop-filter: blur(10px);
}

.header-text[b-39zv5stvw1] {
    flex: 1;
}

.clients-title[b-39zv5stvw1] {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}

.clients-meta[b-39zv5stvw1] {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.header-subtitle[b-39zv5stvw1] {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

.client-count-badge[b-39zv5stvw1] {
    background: rgba(255,255,255,0.25);
    padding: 0.375rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.btn-add[b-39zv5stvw1] {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.btn-add:hover[b-39zv5stvw1] {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

/* Main Content */
.clients-content[b-39zv5stvw1] {
    display: grid;
    gap: 2rem;
}

/* Clients Section */
.clients-section[b-39zv5stvw1] {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.section-title[b-39zv5stvw1] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.section-title i[b-39zv5stvw1] {
    color: var(--bs-primary);
}

/* Empty State */
.empty-state[b-39zv5stvw1] {
    text-align: center;
    padding: 4rem 2rem;
    color: #6c757d;
}

.empty-icon[b-39zv5stvw1] {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, var(--bs-primary) 0%, #8b5cf6 100%);
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.empty-state h3[b-39zv5stvw1] {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
}

.empty-state p[b-39zv5stvw1] {
    color: #6b7280;
    margin: 0 0 2rem 0;
    font-size: 1rem;
}

.btn-primary[b-39zv5stvw1] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover[b-39zv5stvw1] {
    background: linear-gradient(135deg, #5a6fd8 0%, #6b4190 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
}

.btn-primary:active[b-39zv5stvw1] {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Clients Section */
.clients-section[b-39zv5stvw1] {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.section-title[b-39zv5stvw1] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.section-title i[b-39zv5stvw1] {
    color: var(--bs-primary);
}

.client-cards[b-39zv5stvw1] {
    display: grid;
    gap: 1rem;
}

/* Client Card */
.client-card[b-39zv5stvw1] {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.client-card[b-39zv5stvw1]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--bs-primary) 0%, #8b5cf6 100%);
}

.client-card:hover[b-39zv5stvw1] {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border-color: rgba(112, 72, 232, 0.2);
}

/* Client Card Header */
.client-card-header[b-39zv5stvw1] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.client-info[b-39zv5stvw1] {
    display: flex;
    gap: 1rem;
    flex: 1;
    align-items: flex-start;
}

.client-icon[b-39zv5stvw1] {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--bs-primary) 0%, #8b5cf6 100%);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.client-content[b-39zv5stvw1] {
    flex: 1;
    min-width: 0;
}

.client-name[b-39zv5stvw1] {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.client-meta[b-39zv5stvw1] {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}

.client-id-badge[b-39zv5stvw1] {
    background: rgba(112, 72, 232, 0.1);
    color: var(--bs-primary);
    padding: 0.25rem 0.625rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    font-family: monospace;
}

.delete-btn[b-39zv5stvw1] {
    width: 2rem;
    height: 2rem;
    border: none;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border-radius: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    opacity: 0;
    transform: scale(0.9);
}

.client-card:hover .delete-btn[b-39zv5stvw1] {
    opacity: 1;
    transform: scale(1);
}

.delete-btn:hover[b-39zv5stvw1] {
    background: rgba(239, 68, 68, 0.2);
    transform: scale(1.05);
}

/* Client Card Footer */
.client-footer[b-39zv5stvw1] {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-top: 0.75rem;
    border-top: 1px solid #f3f4f6;
}

.view-details[b-39zv5stvw1] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--bs-primary);
    font-weight: 500;
    transition: gap 0.2s ease;
}

.client-card:hover .view-details[b-39zv5stvw1] {
    gap: 0.75rem;
}

.view-details i[b-39zv5stvw1] {
    font-size: 1rem;
}

/* Modal/Drawer styles */
.drawer-backdrop[b-39zv5stvw1] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1010;
}

.client-form-container[b-39zv5stvw1] {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top-left-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
    padding: 1.5rem 1.5rem 2rem;
    z-index: 1020;
    animation: slide-up-b-39zv5stvw1 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    max-height: 100vh;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.2);
}

/* Desktop modal behavior */
@media (min-width: 768px) {
    .client-form-container[b-39zv5stvw1] {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        bottom: auto;
        right: auto;
        width: 480px;
        max-width: 90vw;
        border-radius: 1rem;
        box-shadow: 0 20px 64px rgba(0, 0, 0, 0.3);
        animation: fade-in-b-39zv5stvw1 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    }
}

@keyframes slide-up-b-39zv5stvw1 {
    from { 
        transform: translateY(100%);
        opacity: 0;
    }
    to { 
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fade-in-b-39zv5stvw1 {
    from { 
        opacity: 0; 
        transform: translate(-50%, -45%) scale(0.95);
    }
    to { 
        opacity: 1; 
        transform: translate(-50%, -50%) scale(1);
    }
}

.client-form-container .close-btn[b-39zv5stvw1] {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: #6b7280;
    font-size: 1.25rem;
    z-index: 15;
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.client-form-container .close-btn:hover[b-39zv5stvw1] {
    background: #f3f4f6;
    color: #374151;
}

/* Form Header */
.form-header[b-39zv5stvw1] {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.form-icon[b-39zv5stvw1] {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--bs-primary) 0%, #8b5cf6 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.form-header h4[b-39zv5stvw1] {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
}

.form-subtitle[b-39zv5stvw1] {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
}

.form-group[b-39zv5stvw1] {
    margin-bottom: 1.25rem;
}

.form-group label[b-39zv5stvw1] {
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
    display: block;
}

.form-control[b-39zv5stvw1] {
    border-radius: 0.75rem;
    border: 1.5px solid #e5e7eb;
    transition: all 0.2s ease;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    width: 100%;
}

.form-control:focus[b-39zv5stvw1] {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 3px rgba(112, 72, 232, 0.1);
    outline: none;
}

.form-control[b-39zv5stvw1]::placeholder {
    color: #9ca3af;
}

.validation-message[b-39zv5stvw1] {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

/* Form Actions */
.form-actions[b-39zv5stvw1] {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.btn[b-39zv5stvw1] {
    flex: 1;
    padding: 0.875rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.btn-secondary[b-39zv5stvw1] {
    background: #f3f4f6;
    color: #6b7280;
    border: 1px solid #e5e7eb;
}

.btn-secondary:hover[b-39zv5stvw1] {
    background: #e5e7eb;
    color: #374151;
}

/* Responsive Design */
@media (max-width: 992px) {
    .clients-header[b-39zv5stvw1] {
        gap: 1.5rem;
    }
    
    .header-content[b-39zv5stvw1] {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .header-content[b-39zv5stvw1] {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .clients-header[b-39zv5stvw1] {
        padding: 1.5rem;
        flex-direction: column;
    }
    
    .btn-add[b-39zv5stvw1] {
        width: 100%;
        justify-content: center;
    }
    
    .client-form-container[b-39zv5stvw1] {
        border-radius: 0;
    }
}

@media (max-width: 767px) {
    .clients-section[b-39zv5stvw1] {
        margin: 0 1rem;
        padding: 1.5rem;
    }
    
    .clients-title[b-39zv5stvw1] {
        font-size: 1.5rem;
    }
    
    .clients-meta[b-39zv5stvw1] {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .client-card[b-39zv5stvw1] {
        padding: 1.25rem;
    }
    
    .client-info[b-39zv5stvw1] {
        gap: 0.75rem;
    }
    
    .client-icon[b-39zv5stvw1] {
        width: 2rem;
        height: 2rem;
        font-size: 0.875rem;
    }
    
    .client-name[b-39zv5stvw1] {
        font-size: 1rem;
    }
    
    .client-meta[b-39zv5stvw1] {
        gap: 0.5rem;
    }
    
    .delete-btn[b-39zv5stvw1] {
        opacity: 1;
    }
}
/* /Pages/Home.razor.rz.scp.css */
/* Main Container */
.home-container[b-gf3h3snzoi] {
    min-height: calc(100vh - 4rem);
}

/* Header Section */
.home-header[b-gf3h3snzoi] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--bs-primary) 0%, #8b5cf6 100%);
    border-radius: 1rem;
    color: white;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.header-content[b-gf3h3snzoi] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.dashboard-icon[b-gf3h3snzoi] {
    width: 4rem;
    height: 4rem;
    background: rgba(255,255,255,0.2);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    backdrop-filter: blur(10px);
}

.header-text[b-gf3h3snzoi] {
    flex: 1;
}

.dashboard-title[b-gf3h3snzoi] {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}

.dashboard-meta[b-gf3h3snzoi] {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.today-date[b-gf3h3snzoi] {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

.activity-count[b-gf3h3snzoi] {
    background: rgba(255,255,255,0.25);
    padding: 0.375rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.btn-add[b-gf3h3snzoi] {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.btn-add:hover[b-gf3h3snzoi] {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

/* Main Content */
.home-content[b-gf3h3snzoi] {
    display: grid;
    gap: 2rem;
}

/* Empty State */
.empty-state[b-gf3h3snzoi] {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 1rem;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.empty-icon[b-gf3h3snzoi] {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, var(--bs-primary) 0%, #8b5cf6 100%);
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.empty-state h3[b-gf3h3snzoi] {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
}

.empty-state p[b-gf3h3snzoi] {
    color: #6b7280;
    margin: 0 0 2rem 0;
    font-size: 1rem;
}

.btn-primary[b-gf3h3snzoi] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover[b-gf3h3snzoi] {
    background: linear-gradient(135deg, #5a6fd8 0%, #6b4190 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
}

.btn-primary:active[b-gf3h3snzoi] {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Stats Cards */
.stats-cards[b-gf3h3snzoi] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card[b-gf3h3snzoi] {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.2s ease;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.stat-card:hover[b-gf3h3snzoi] {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.stat-card.primary[b-gf3h3snzoi] {
    border-left: 4px solid var(--bs-primary);
}

.stat-card.accent[b-gf3h3snzoi] {
    border-left: 4px solid #10b981;
}

.stat-card.secondary[b-gf3h3snzoi] {
    border-left: 4px solid #f59e0b;
}

.stat-icon[b-gf3h3snzoi] {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.stat-card.primary .stat-icon[b-gf3h3snzoi] {
    background: rgba(112, 72, 232, 0.1);
    color: var(--bs-primary);
}

.stat-card.accent .stat-icon[b-gf3h3snzoi] {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.stat-card.secondary .stat-icon[b-gf3h3snzoi] {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.stat-content[b-gf3h3snzoi] {
    flex: 1;
}

.stat-value[b-gf3h3snzoi] {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1;
}

.stat-label[b-gf3h3snzoi] {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
    margin-top: 0.25rem;
}

/* Activities Section */
.activities-section[b-gf3h3snzoi] {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.section-title[b-gf3h3snzoi] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.section-title i[b-gf3h3snzoi] {
    color: var(--bs-primary);
}

.activity-cards[b-gf3h3snzoi] {
    display: grid;
    gap: 1rem;
}

/* Modal/Drawer styles - enhanced */
.drawer-backdrop[b-gf3h3snzoi] {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    z-index: 1010;
}

.activity-form-container[b-gf3h3snzoi] {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top-left-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
    padding: 1.5rem 1.5rem 2rem;
    z-index: 1020;
    animation: slide-up-b-gf3h3snzoi 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    max-height: 100vh;
    box-shadow: 0 -8px 32px rgba(0,0,0,0.2);
}

/* Desktop modal behavior */
@media (min-width: 768px) {
    .activity-form-container[b-gf3h3snzoi] {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        bottom: auto;
        right: auto;
        width: 480px;
        max-width: 90vw;
        border-radius: 1rem;
        box-shadow: 0 20px 64px rgba(0,0,0,0.3);
        animation: fade-in-b-gf3h3snzoi 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    }
}

@media (max-width: 767px) {
    .activity-form-container[b-gf3h3snzoi] {
        border-radius: 0;
    }
    
    .home-container[b-gf3h3snzoi] {
        padding: 1rem;
    }
    
    .home-header[b-gf3h3snzoi] {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        padding: 1.5rem;
    }
    
    .header-content[b-gf3h3snzoi] {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .dashboard-title[b-gf3h3snzoi] {
        font-size: 1.5rem;
    }
    
    .dashboard-meta[b-gf3h3snzoi] {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .stats-cards[b-gf3h3snzoi] {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-card[b-gf3h3snzoi] {
        padding: 1.25rem;
    }
    
    .activities-section[b-gf3h3snzoi] {
        padding: 1.5rem;
    }
}

@keyframes slide-up-b-gf3h3snzoi {
    from { 
        transform: translateY(100%);
        opacity: 0;
    }
    to { 
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fade-in-b-gf3h3snzoi {
    from { 
        opacity: 0; 
        transform: translate(-50%, -45%) scale(0.95);
    }
    to { 
        opacity: 1; 
        transform: translate(-50%, -50%) scale(1);
    }
}

.activity-form-container .close-btn[b-gf3h3snzoi] {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: #6b7280;
    font-size: 1.25rem;
    z-index: 15;
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.activity-form-container .close-btn:hover[b-gf3h3snzoi] {
    background: #f3f4f6;
    color: #374151;
}

.activity-form-container .close-btn .bi[b-gf3h3snzoi] {
    pointer-events: none;
}

/* Form Header */
.form-header[b-gf3h3snzoi] {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.form-icon[b-gf3h3snzoi] {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--bs-primary) 0%, #8b5cf6 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.form-header h4[b-gf3h3snzoi] {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
}

.form-subtitle[b-gf3h3snzoi] {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
}

.form-group[b-gf3h3snzoi] {
    margin-bottom: 1.25rem;
}

.form-group label[b-gf3h3snzoi] {
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
    display: block;
}

.optional[b-gf3h3snzoi] {
    font-weight: 400;
    color: #9ca3af;
    font-size: 0.85rem;
}

.form-control[b-gf3h3snzoi] {
    border-radius: 0.75rem;
    border: 1.5px solid #e5e7eb;
    transition: all 0.2s ease;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
}

.form-control:focus[b-gf3h3snzoi] {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 3px rgba(112, 72, 232, 0.1);
    outline: none;
}

.form-control[b-gf3h3snzoi]::placeholder {
    color: #9ca3af;
}

/* Form Actions */
.form-actions[b-gf3h3snzoi] {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.btn[b-gf3h3snzoi] {
    flex: 1;
    padding: 0.875rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.btn-primary[b-gf3h3snzoi] {
    background: linear-gradient(135deg, var(--bs-primary) 0%, #8b5cf6 100%);
    color: white;
}

.btn-primary:hover[b-gf3h3snzoi] {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(112, 72, 232, 0.3);
}

.btn-secondary[b-gf3h3snzoi] {
    background: #f3f4f6;
    color: #6b7280;
    border: 1px solid #e5e7eb;
}

.btn-secondary:hover[b-gf3h3snzoi] {
    background: #e5e7eb;
    color: #374151;
}
/* /Pages/Profile.razor.rz.scp.css */
/* Loading State */
.loading-container[b-37gi6azpv5] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    gap: 1rem;
    color: var(--bs-secondary);
}

.loading-spinner[b-37gi6azpv5] {
    font-size: 2rem;
    animation: spin-b-37gi6azpv5 1s linear infinite;
}

@keyframes spin-b-37gi6azpv5 {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header Section */
.page-header[b-37gi6azpv5] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header[b-37gi6azpv5]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    z-index: 0;
}

.header-content[b-37gi6azpv5] {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.profile-avatar[b-37gi6azpv5] {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-info[b-37gi6azpv5] {
    flex: 1;
}

.profile-name[b-37gi6azpv5] {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.profile-email[b-37gi6azpv5] {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0 0 1rem 0;
}

.profile-roles[b-37gi6azpv5] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.role-badge[b-37gi6azpv5] {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Profile Section */
.profile-section[b-37gi6azpv5] {
    margin-bottom: 2rem;
}

.info-cards[b-37gi6azpv5] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
}

.info-card[b-37gi6azpv5] {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.info-card:hover[b-37gi6azpv5] {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.card-header[b-37gi6azpv5] {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.card-icon[b-37gi6azpv5] {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.card-icon.admin[b-37gi6azpv5] {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.card-header h3[b-37gi6azpv5] {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--bs-dark);
    flex: 1;
}

.admin-badge[b-37gi6azpv5] {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.card-content[b-37gi6azpv5] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item[b-37gi6azpv5] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.info-item:last-child[b-37gi6azpv5] {
    border-bottom: none;
    padding-bottom: 0;
}

.info-label[b-37gi6azpv5] {
    font-weight: 500;
    color: var(--bs-secondary);
    font-size: 0.875rem;
}

.info-value[b-37gi6azpv5] {
    font-weight: 600;
    color: var(--bs-dark);
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
    font-size: 0.875rem;
}

.roles-list[b-37gi6azpv5] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.role-item[b-37gi6azpv5] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 8px;
    color: var(--bs-dark);
    font-weight: 500;
}

.role-item i[b-37gi6azpv5] {
    color: #28a745;
    font-size: 0.875rem;
}

/* Admin Section */
.admin-section[b-37gi6azpv5] {
    margin-bottom: 2rem;
}

/* Report Section */
.report-section[b-37gi6azpv5] {
    margin-bottom: 2rem;
}

.admin-card[b-37gi6azpv5] {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(245, 87, 108, 0.2);
    transition: all 0.3s ease;
}

.admin-card:hover[b-37gi6azpv5] {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.admin-actions[b-37gi6azpv5] {
    margin-bottom: 1rem;
}

.admin-download-btn[b-37gi6azpv5] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.claims-grid[b-37gi6azpv5] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.claim-item[b-37gi6azpv5] {
    background: rgba(240, 147, 251, 0.1);
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid rgba(245, 87, 108, 0.2);
}

.claim-type[b-37gi6azpv5] {
    font-weight: 600;
    color: var(--bs-dark);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.claim-value[b-37gi6azpv5] {
    color: var(--bs-secondary);
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
    font-size: 0.875rem;
    word-break: break-all;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header[b-37gi6azpv5] {
        padding: 1.5rem;
    }
    
    .header-content[b-37gi6azpv5] {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .profile-avatar[b-37gi6azpv5] {
        font-size: 3rem;
    }
    
    .profile-name[b-37gi6azpv5] {
        font-size: 1.5rem;
    }
    
    .info-cards[b-37gi6azpv5] {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .info-card[b-37gi6azpv5] {
        padding: 1rem;
    }
    
    .card-header[b-37gi6azpv5] {
        gap: 0.75rem;
    }
    
    .card-icon[b-37gi6azpv5] {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .claims-grid[b-37gi6azpv5] {
        grid-template-columns: 1fr;
    }
    
    .info-item[b-37gi6azpv5] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
}

@media (max-width: 576px) {
    .profile-roles[b-37gi6azpv5] {
        justify-content: center;
    }
    
    .role-badge[b-37gi6azpv5] {
        font-size: 0.75rem;
        padding: 0.2rem 0.6rem;
    }
}
/* /Pages/Reports/Components/HoursByType.razor.rz.scp.css */
/* Type Breakdown */
.type-breakdown[b-vpiy5ms1vy] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.type-item[b-vpiy5ms1vy] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 0.75rem;
    border: 1px solid #f3f4f6;
    transition: all 0.2s ease;
}

.type-item:hover[b-vpiy5ms1vy] {
    background: #f3f4f6;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.type-info[b-vpiy5ms1vy] {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.type-icon[b-vpiy5ms1vy] {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--bs-primary) 0%, #8b5cf6 100%);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.type-details[b-vpiy5ms1vy] {
    flex: 1;
    min-width: 0;
}

.type-name[b-vpiy5ms1vy] {
    font-weight: 600;
    color: #1f2937;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.type-percentage[b-vpiy5ms1vy] {
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 500;
}

.type-hours[b-vpiy5ms1vy] {
    flex-shrink: 0;
}

.hours-badge[b-vpiy5ms1vy] {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

/* No Data State */
.no-data[b-vpiy5ms1vy] {
    text-align: center;
    padding: 2rem;
    color: #9ca3af;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.no-data i[b-vpiy5ms1vy] {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 480px) {
    .type-item[b-vpiy5ms1vy] {
        padding: 0.75rem;
    }
    
    .type-icon[b-vpiy5ms1vy] {
        width: 2rem;
        height: 2rem;
        font-size: 0.875rem;
    }
    
    .type-name[b-vpiy5ms1vy] {
        font-size: 0.875rem;
    }
    
    .type-percentage[b-vpiy5ms1vy] {
        font-size: 0.75rem;
    }
    
    .hours-badge[b-vpiy5ms1vy] {
        padding: 0.375rem 0.75rem;
        font-size: 0.75rem;
    }
}
/* /Pages/Reports/Components/HoursByTypeDay.razor.rz.scp.css */
.hours-container[b-mk691v7d66] {
    position: relative;
    overflow-x: auto;
    max-width: 100%;
    border-radius: 0.5rem;
    border: 1px solid var(--bs-border-color);
    background: var(--bs-body-bg);
}

/* Table */
.hours-table[b-mk691v7d66] {
    border-collapse: separate;
    border-spacing: 0;
    width: max-content;
    min-width: 100%;
    font-size: 0.9rem;
    font-family: var(--bs-body-font-family);
    font-variant-numeric: tabular-nums;
}

/* Cells */
.hours-table th[b-mk691v7d66],
.hours-table td[b-mk691v7d66] {
    padding: 0.35rem 0.6rem;
    border-bottom: 1px solid var(--bs-border-color);
    white-space: nowrap;
}

.hours-table th[b-mk691v7d66] {
    background: var(--bs-light);
    font-weight: 600;
    text-align: right;
}

.hours-table th:first-child[b-mk691v7d66],
.hours-table td:first-child[b-mk691v7d66] {
    text-align: left;
    /*background: var(--bs-body-bg);*/
}

/* Sticky total column */
.hours-table th:last-child[b-mk691v7d66],
.hours-table td:last-child[b-mk691v7d66] {
    position: sticky;
    right: 0;
    background: var(--bs-light);
    font-weight: 600;
    z-index: 2;
}

/* Subtle right fade to avoid visible cutoff */
.hours-table td:last-child[b-mk691v7d66]::after,
.hours-table th:last-child[b-mk691v7d66]::after {
    content: "";
    position: absolute;
    top: 0;
    right: -1px;
    bottom: 0;
    width: 1px;
    background: var(--bs-border-color);
}

/* Scrollbar */
.hours-container[b-mk691v7d66]::-webkit-scrollbar {
    height: 8px;
}
.hours-container[b-mk691v7d66]::-webkit-scrollbar-thumb {
    background: var(--bs-border-color);
    border-radius: 4px;
}

/* Responsive tweak */
@media (max-width: 992px) {
    .hours-container[b-mk691v7d66] {
        margin-right: -1rem;
        margin-left: -1rem;
        border-left: none;
        border-right: none;
        border-radius: 0;
    }
}
/* /Pages/Reports/Components/HoursByUser.razor.rz.scp.css */
.user-row[b-qlgosevxja] {
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 4px;
    padding: 0.5rem 0.25rem;
    margin: 0 -0.25rem;
}

.user-row:hover[b-qlgosevxja] {
    background-color: #f8f9fa;
    transform: translateX(2px);
}

.nav-icon[b-qlgosevxja] {
    color: #667eea;
    font-size: 0.875rem;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.user-row:hover .nav-icon[b-qlgosevxja] {
    opacity: 1;
    transform: translateX(2px);
    color: #764ba2;
}
/* /Pages/Reports/Components/HoursByUserType.razor.rz.scp.css */
/* User Breakdown */
.user-breakdown[b-bw32rhk4pm] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.user-block[b-bw32rhk4pm] {
    background: #f9fafb;
    border-radius: 1rem;
    border: 1px solid #f3f4f6;
    overflow: hidden;
    transition: all 0.2s ease;
}

.user-block:hover[b-bw32rhk4pm] {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

/* User Header */
.user-header[b-bw32rhk4pm] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    background: white;
    border-bottom: 1px solid #f3f4f6;
}

.user-header.clickable[b-bw32rhk4pm] {
    cursor: pointer;
    transition: all 0.2s ease;
}

.user-header.clickable:hover[b-bw32rhk4pm] {
    background: #f9fafb;
}

.user-info[b-bw32rhk4pm] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-avatar[b-bw32rhk4pm] {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--bs-primary) 0%, #8b5cf6 100%);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.125rem;
}

.user-details[b-bw32rhk4pm] {
    flex: 1;
}

.user-name[b-bw32rhk4pm] {
    font-weight: 600;
    color: #1f2937;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.user-summary[b-bw32rhk4pm] {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

.user-total[b-bw32rhk4pm] {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-arrow[b-bw32rhk4pm] {
    color: #667eea;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.user-header.clickable:hover .nav-arrow[b-bw32rhk4pm] {
    transform: translateX(3px);
    opacity: 1;
    color: #764ba2;
}

.total-badge[b-bw32rhk4pm] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Activity List */
.activity-list[b-bw32rhk4pm] {
    padding: 0.75rem 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.activity-item[b-bw32rhk4pm] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: white;
    border-radius: 0.5rem;
    border: 1px solid #f3f4f6;
    transition: all 0.2s ease;
}

.activity-item:hover[b-bw32rhk4pm] {
    background: #f9fafb;
    border-color: #e5e7eb;
}

.activity-info[b-bw32rhk4pm] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.activity-icon[b-bw32rhk4pm] {
    width: 1.75rem;
    height: 1.75rem;
    background: rgba(112, 72, 232, 0.1);
    color: var(--bs-primary);
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.activity-name[b-bw32rhk4pm] {
    font-weight: 500;
    color: #374151;
    font-size: 0.875rem;
}

.activity-hours[b-bw32rhk4pm] {
    flex-shrink: 0;
}

.hours-badge[b-bw32rhk4pm] {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 0.375rem 0.75rem;
    border-radius: 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.hours-badge.small[b-bw32rhk4pm] {
    padding: 0.25rem 0.625rem;
    font-size: 0.7rem;
}

/* No Data State */
.no-data[b-bw32rhk4pm] {
    text-align: center;
    padding: 2rem;
    color: #9ca3af;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.no-data i[b-bw32rhk4pm] {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .user-header[b-bw32rhk4pm] {
        padding: 1rem;
    }
    
    .user-avatar[b-bw32rhk4pm] {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }
    
    .activity-list[b-bw32rhk4pm] {
        padding: 0.5rem 1rem 1rem;
    }
}

@media (max-width: 480px) {
    .user-header[b-bw32rhk4pm] {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .user-info[b-bw32rhk4pm] {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .activity-item[b-bw32rhk4pm] {
        padding: 0.625rem;
    }
    
    .activity-info[b-bw32rhk4pm] {
        gap: 0.5rem;
    }
    
    .activity-icon[b-bw32rhk4pm] {
        width: 1.5rem;
        height: 1.5rem;
        font-size: 0.7rem;
    }
    
    .activity-name[b-bw32rhk4pm] {
        font-size: 0.8rem;
    }
}
/* /Pages/Reports/Summary.razor.rz.scp.css */
/* Loading State */
.loading-container[b-yr35cb2o0e] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    color: #6b7280;
}

.loading-spinner[b-yr35cb2o0e] {
    font-size: 2rem;
    margin-bottom: 1rem;
    animation: spin-b-yr35cb2o0e 1s linear infinite;
}

@keyframes spin-b-yr35cb2o0e {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Page Header */
.page-header[b-yr35cb2o0e] {
    background: linear-gradient(135deg, var(--bs-primary) 0%, #8b5cf6 100%);
    border-radius: 1.5rem;
    padding: 2rem;
    margin-bottom: 2rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header[b-yr35cb2o0e]::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(100px, -100px);
}

.header-content[b-yr35cb2o0e] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.header-info[b-yr35cb2o0e] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-icon[b-yr35cb2o0e] {
    width: 4rem;
    height: 4rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.page-title[b-yr35cb2o0e] {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

.page-subtitle[b-yr35cb2o0e] {
    margin: 0.25rem 0 0 0;
    opacity: 0.9;
    font-size: 1rem;
}

/* Month Navigation */
.month-navigation[b-yr35cb2o0e] {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 0.5rem;
}

.nav-btn[b-yr35cb2o0e] {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-btn:hover:not(:disabled)[b-yr35cb2o0e] {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.nav-btn:disabled[b-yr35cb2o0e] {
    opacity: 0.5;
    cursor: not-allowed;
}

.current-month[b-yr35cb2o0e] {
    padding: 0 1rem;
    font-weight: 600;
    font-size: 1rem;
}

/* Empty State */
.empty-state[b-yr35cb2o0e] {
    text-align: center;
    padding: 4rem 2rem;
    color: #6b7280;
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0,0,0,0.06);
}

.empty-icon[b-yr35cb2o0e] {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    color: #9ca3af;
}

.empty-state h3[b-yr35cb2o0e] {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
}

.empty-state p[b-yr35cb2o0e] {
    margin: 0 0 1.5rem 0;
    color: #6b7280;
}

/* Metrics Section */
.metrics-section[b-yr35cb2o0e] {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.primary-metric[b-yr35cb2o0e] {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.primary-metric .metric-icon[b-yr35cb2o0e] {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--bs-primary) 0%, #8b5cf6 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.primary-metric .metric-content[b-yr35cb2o0e] {
    flex: 1;
}

.primary-metric .metric-label[b-yr35cb2o0e] {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.primary-metric .metric-value[b-yr35cb2o0e] {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.primary-metric .metric-subtitle[b-yr35cb2o0e] {
    font-size: 0.875rem;
    color: #9ca3af;
}

.secondary-metrics[b-yr35cb2o0e] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.metric-card[b-yr35cb2o0e] {
    background: white;
    border-radius: 1rem;
    padding: 1.25rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.2s ease;
}

.metric-card:hover[b-yr35cb2o0e] {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.metric-icon[b-yr35cb2o0e] {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.metric-icon.small[b-yr35cb2o0e] {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.metric-card:nth-child(1) .metric-icon[b-yr35cb2o0e] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.metric-card:nth-child(2) .metric-icon[b-yr35cb2o0e] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.metric-card:nth-child(3) .metric-icon[b-yr35cb2o0e] {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
}

.metric-value.small[b-yr35cb2o0e] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1;
}

.metric-label.small[b-yr35cb2o0e] {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
    margin-top: 0.25rem;
}

/* Reports Grid */
.reports-grid[b-yr35cb2o0e] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.report-card[b-yr35cb2o0e] {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0,0,0,0.06);
    overflow: hidden;
    transition: all 0.2s ease;
}

.report-card:hover[b-yr35cb2o0e] {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.report-header[b-yr35cb2o0e] {
    background: #f9fafb;
    padding: 1.5rem;
    border-bottom: 1px solid #f3f4f6;
}

.report-title[b-yr35cb2o0e] {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.report-content[b-yr35cb2o0e] {
    padding: 1.5rem;
}

/* Actions Section */
.actions-section[b-yr35cb2o0e] {
    display: flex;
    justify-content: center;
    padding: 2rem 0;
}

.btn-primary[b-yr35cb2o0e] {
    background: linear-gradient(135deg, var(--bs-primary) 0%, #8b5cf6 100%);
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.btn-primary:hover[b-yr35cb2o0e] {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(112, 72, 232, 0.3);
}

.download-btn[b-yr35cb2o0e] {
    font-size: 1rem;
    padding: 1rem 2rem;
}

/* Legacy Report Styles - Keep for component compatibility */
.report-section[b-yr35cb2o0e] {
    margin: 2rem 0;
}

.report-section h4[b-yr35cb2o0e] {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.report-grid[b-yr35cb2o0e] {
    font-size: 0.95rem;
    font-variant-numeric: tabular-nums;
}

.report-header[b-yr35cb2o0e] {
    color: #374151;
    font-weight: 600;
}

.report-grid > div[b-yr35cb2o0e] {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.report-grid .border-bottom:last-of-type[b-yr35cb2o0e] {
    border-bottom: none;
}

.text-end[b-yr35cb2o0e] {
    text-align: right;
}

.user-block[b-yr35cb2o0e] {
    margin-bottom: 1.5rem;
}

.user-header[b-yr35cb2o0e] {
    font-size: 1rem;
    color: #1f2937;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    padding: 0.75rem 0;
    border-bottom: 2px solid #e5e7eb;
}

.sub-row[b-yr35cb2o0e] {
    font-size: 0.875rem;
    font-variant-numeric: tabular-nums;
    color: #6b7280;
}

.user-block .sub-row[b-yr35cb2o0e] {
    padding-left: 1.5rem;
}

.sub-row:last-child[b-yr35cb2o0e] {
    border-bottom: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content[b-yr35cb2o0e] {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .page-header[b-yr35cb2o0e] {
        padding: 1.5rem;
    }
    
    .month-navigation[b-yr35cb2o0e] {
        width: 100%;
        justify-content: space-between;
        padding: 0.75rem;
    }
    
    .nav-btn[b-yr35cb2o0e] {
        padding: 0.625rem 0.875rem;
        font-size: 0.875rem;
        flex-shrink: 0;
    }
    
    .current-month[b-yr35cb2o0e] {
        padding: 0 0.5rem;
        font-size: 0.875rem;
        text-align: center;
        min-width: 0;
        flex-shrink: 1;
    }
    
    .metrics-section[b-yr35cb2o0e] {
        grid-template-columns: 1fr;
    }
    
    .primary-metric[b-yr35cb2o0e] {
        padding: 1.5rem;
    }
    
    .primary-metric .metric-value[b-yr35cb2o0e] {
        font-size: 2.5rem;
    }
    
    .secondary-metrics[b-yr35cb2o0e] {
        grid-template-columns: repeat(3, 1fr);
        display: grid;
    }
    
    .reports-grid[b-yr35cb2o0e] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .report-header[b-yr35cb2o0e],
    .report-content[b-yr35cb2o0e] {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .month-navigation[b-yr35cb2o0e] {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem;
    }
    
    .nav-btn[b-yr35cb2o0e] {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1rem;
    }
    
    .current-month[b-yr35cb2o0e] {
        order: -1;
        padding: 0.5rem;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 0.5rem;
        font-weight: 600;
    }
    
    .secondary-metrics[b-yr35cb2o0e] {
        grid-template-columns: 1fr;
    }
    
    .metric-card[b-yr35cb2o0e] {
        padding: 1rem;
    }
    
    .primary-metric[b-yr35cb2o0e] {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .primary-metric .metric-value[b-yr35cb2o0e] {
        font-size: 2rem;
    }
}
/* /Pages/Users/User.razor.rz.scp.css */
/* Loading State */
.loading-container[b-hooapzna7t] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    gap: 1rem;
    color: var(--bs-secondary);
}

.loading-spinner[b-hooapzna7t] {
    font-size: 2rem;
    animation: spin-b-hooapzna7t 1s linear infinite;
}

@keyframes spin-b-hooapzna7t {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header Section */
.page-header[b-hooapzna7t] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header[b-hooapzna7t]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    z-index: 0;
}

.header-content[b-hooapzna7t] {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.profile-avatar[b-hooapzna7t] {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-info[b-hooapzna7t] {
    flex: 1;
}

.profile-name[b-hooapzna7t] {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.profile-email[b-hooapzna7t] {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0 0 1rem 0;
}

.profile-meta[b-hooapzna7t] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.user-id-badge[b-hooapzna7t] {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
}

.profile-actions[b-hooapzna7t] {
    display: flex;
    gap: 0.75rem;
}

.action-btn[b-hooapzna7t] {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.action-btn:hover[b-hooapzna7t] {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
}

/* Profile Section */
.profile-section[b-hooapzna7t] {
    margin-bottom: 2rem;
}

.info-cards[b-hooapzna7t] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
}

.info-card[b-hooapzna7t] {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.info-card:hover[b-hooapzna7t] {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.card-header[b-hooapzna7t] {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.card-icon[b-hooapzna7t] {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.card-header h3[b-hooapzna7t] {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--bs-dark);
    flex: 1;
}

.card-content[b-hooapzna7t] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item[b-hooapzna7t] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.info-item:last-child[b-hooapzna7t] {
    border-bottom: none;
    padding-bottom: 0;
}

.info-label[b-hooapzna7t] {
    font-weight: 500;
    color: var(--bs-secondary);
    font-size: 0.875rem;
}

.info-value[b-hooapzna7t] {
    font-weight: 600;
    color: var(--bs-dark);
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
    font-size: 0.875rem;
}

.loading-text[b-hooapzna7t] {
    color: var(--bs-secondary) !important;
    font-style: italic;
    font-family: inherit !important;
}

/* Report Section */
.report-section[b-hooapzna7t] {
    margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header[b-hooapzna7t] {
        padding: 1.5rem;
    }
    
    .header-content[b-hooapzna7t] {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .profile-avatar[b-hooapzna7t] {
        font-size: 3rem;
    }
    
    .profile-name[b-hooapzna7t] {
        font-size: 1.5rem;
    }
    
    .profile-actions[b-hooapzna7t] {
        justify-content: center;
    }
    
    .info-cards[b-hooapzna7t] {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .info-card[b-hooapzna7t] {
        padding: 1rem;
    }
    
    .card-header[b-hooapzna7t] {
        gap: 0.75rem;
    }
    
    .card-icon[b-hooapzna7t] {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .info-item[b-hooapzna7t] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
}

@media (max-width: 576px) {
    .profile-meta[b-hooapzna7t] {
        justify-content: center;
    }
    
    .user-id-badge[b-hooapzna7t] {
        font-size: 0.75rem;
        padding: 0.2rem 0.6rem;
    }
    
    .action-btn[b-hooapzna7t] {
        padding: 0.6rem 1rem;
        font-size: 0.875rem;
    }
}
/* /Pages/Users/UserMonthlyReport.razor.rz.scp.css */
/* User Activities Page Styles */

/* Loading container */
.loading-container[b-9ku503po2m] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
}

.loading-spinner[b-9ku503po2m] {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    animation: spin-b-9ku503po2m 1s linear infinite;
}

@keyframes spin-b-9ku503po2m {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.loading-container p[b-9ku503po2m] {
    color: #6c757d;
    font-size: 1.1rem;
    margin: 0;
}

/* Page header */
.page-header[b-9ku503po2m] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.page-header[b-9ku503po2m]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    z-index: 0;
}

.header-content[b-9ku503po2m] {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.header-info[b-9ku503po2m] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-icon[b-9ku503po2m] {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.header-text h1[b-9ku503po2m] {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
}

.header-text p[b-9ku503po2m] {
    margin: 0.25rem 0 0;
    opacity: 0.9;
    font-size: 1rem;
}

.page-actions[b-9ku503po2m] {
    display: flex;
    gap: 1rem;
}

.nav-btn[b-9ku503po2m] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
}

.nav-btn:hover[b-9ku503po2m] {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.nav-btn:active[b-9ku503po2m] {
    transform: translateY(0);
}

/* Stats section */
.stats-section[b-9ku503po2m] {
    margin-bottom: 2rem;
}

.stats-cards[b-9ku503po2m] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.stat-card[b-9ku503po2m] {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.2s ease;
}

.stat-card:hover[b-9ku503po2m] {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.stat-icon[b-9ku503po2m] {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
}

.stat-card.primary .stat-icon[b-9ku503po2m] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.stat-card.accent .stat-icon[b-9ku503po2m] {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.stat-card.secondary .stat-icon[b-9ku503po2m] {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.stat-card.success .stat-icon[b-9ku503po2m] {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.stat-content[b-9ku503po2m] {
    display: flex;
    flex-direction: column;
}

.stat-value[b-9ku503po2m] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.stat-label[b-9ku503po2m] {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0.25rem 0 0;
}

/* Activities section */
.activities-section[b-9ku503po2m] {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
    overflow: hidden;
}

/* Empty state */
.empty-state[b-9ku503po2m] {
    text-align: center;
    padding: 4rem 2rem;
    color: #6c757d;
}

.empty-icon[b-9ku503po2m] {
    font-size: 4rem;
    color: #dee2e6;
    margin-bottom: 1rem;
}

.empty-state h3[b-9ku503po2m] {
    color: #495057;
    margin-bottom: 0.5rem;
}

.empty-state p[b-9ku503po2m] {
    margin-bottom: 2rem;
}

.btn-secondary[b-9ku503po2m] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-secondary:hover[b-9ku503po2m] {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Table container */
.table-container[b-9ku503po2m] {
    padding: 1.5rem;
}

.table-header[b-9ku503po2m] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f8f9fa;
}

.section-title[b-9ku503po2m] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 600;
}

.section-title i[b-9ku503po2m] {
    color: #667eea;
}

.table-actions[b-9ku503po2m] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.activity-count[b-9ku503po2m] {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Table wrapper */
.table-wrapper[b-9ku503po2m] {
    overflow-x: auto;
}

.activities-table[b-9ku503po2m] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.activities-table th[b-9ku503po2m] {
    background: #f8f9fa;
    color: #495057;
    font-weight: 600;
    padding: 1rem;
    text-align: left;
    border-bottom: 2px solid #dee2e6;
    white-space: nowrap;
}

.activities-table th.text-end[b-9ku503po2m] {
    text-align: right;
}

.activities-table td[b-9ku503po2m] {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #f1f3f4;
    vertical-align: top;
}

.activities-table td.text-end[b-9ku503po2m] {
    text-align: right;
}

/* Clickable activity rows */
.activity-row.clickable[b-9ku503po2m] {
    cursor: pointer;
    user-select: none;
    transition: all 0.2s ease;
}

.activity-row.clickable:hover[b-9ku503po2m] {
    background-color: #e3f2fd !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.15);
}

/* Regular activity row hover (for non-clickable rows if any) */
.activity-row:not(.clickable):hover[b-9ku503po2m] {
    background: #f8f9fa;
}

.activity-row.clickable:active[b-9ku503po2m] {
    transform: translateY(0);
}

/* Arrow icon for clickable indication */
.activity-arrow[b-9ku503po2m] {
    opacity: 0;
    margin-left: 8px;
    font-size: 0.8em;
    color: #667eea;
    transition: opacity 0.2s ease;
}

.activity-row.clickable:hover .activity-arrow[b-9ku503po2m] {
    opacity: 1;
}

/* Enhanced hours badge for clickable rows */
.activity-row.clickable:hover .hours-badge[b-9ku503po2m] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.activity-row.clickable:hover .type-badge[b-9ku503po2m] {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

/* Clickable row styling */
.activity-row.clickable[b-9ku503po2m] {
    cursor: pointer;
    user-select: none;
}

.activity-row.clickable:hover[b-9ku503po2m] {
    background-color: #e3f2fd !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.15);
}

/* Date cell */
.date-info[b-9ku503po2m] {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.date-day[b-9ku503po2m] {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1;
}

.date-month[b-9ku503po2m] {
    font-size: 0.75rem;
    color: #6c757d;
    text-transform: uppercase;
    font-weight: 500;
}

/* Activity cell */
.activity-info[b-9ku503po2m] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.activity-title[b-9ku503po2m] {
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.4;
}

.activity-notes[b-9ku503po2m] {
    font-size: 0.85rem;
    color: #6c757d;
    line-height: 1.4;
}

/* Type badge */
.type-badge[b-9ku503po2m] {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
}

/* Hours badge */
.hours-badge[b-9ku503po2m] {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #e3f2fd;
    color: #1976d2;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Total row */
.total-row[b-9ku503po2m] {
    background: #f8f9fa;
    font-weight: 600;
}

.total-row td[b-9ku503po2m] {
    border-top: 2px solid #dee2e6;
    border-bottom: none;
    padding: 1rem;
}

.total-label[b-9ku503po2m] {
    color: #495057;
}

.total-value[b-9ku503po2m] {
    color: #2c3e50;
}

/* Responsive design */
@media (max-width: 768px) {
    .header-content[b-9ku503po2m] {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .page-actions[b-9ku503po2m] {
        width: 100%;
        justify-content: flex-start;
    }
    
    .stats-cards[b-9ku503po2m] {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .stat-card[b-9ku503po2m] {
        padding: 1rem;
    }
    
    .table-header[b-9ku503po2m] {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .page-header[b-9ku503po2m] {
        padding: 1.5rem;
    }
    
    .table-container[b-9ku503po2m] {
        padding: 1rem;
    }
    
    .activities-table th[b-9ku503po2m],
    .activities-table td[b-9ku503po2m] {
        padding: 0.5rem;
    }
    
    .header-text h1[b-9ku503po2m] {
        font-size: 1.4rem;
    }
}
/* /Pages/Users/Users.razor.rz.scp.css */
/* Loading State */
.loading-container[b-9ru3xooad1] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    gap: 1rem;
    color: var(--bs-secondary);
}

.loading-spinner[b-9ru3xooad1] {
    font-size: 2rem;
    animation: spin-b-9ru3xooad1 1s linear infinite;
}

@keyframes spin-b-9ru3xooad1 {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header Section */
.page-header[b-9ru3xooad1] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header[b-9ru3xooad1]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    z-index: 0;
}

.header-content[b-9ru3xooad1] {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-icon[b-9ru3xooad1] {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    backdrop-filter: blur(10px);
}

.header-text[b-9ru3xooad1] {
    flex: 1;
}

.header-text h1[b-9ru3xooad1] {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-text p[b-9ru3xooad1] {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.header-stats[b-9ru3xooad1] {
    display: flex;
    gap: 1.5rem;
}

.stat-item[b-9ru3xooad1] {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number[b-9ru3xooad1] {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label[b-9ru3xooad1] {
    font-size: 0.875rem;
    opacity: 0.9;
    text-align: center;
}

/* Empty State */
.empty-state[b-9ru3xooad1] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    gap: 1rem;
    color: var(--bs-secondary);
    text-align: center;
}

.empty-icon[b-9ru3xooad1] {
    font-size: 4rem;
    opacity: 0.5;
    margin-bottom: 1rem;
}

.empty-state h3[b-9ru3xooad1] {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--bs-dark);
    margin: 0;
}

.empty-state p[b-9ru3xooad1] {
    font-size: 1rem;
    margin: 0;
}

/* Users Section */
.users-section[b-9ru3xooad1] {
    margin-bottom: 2rem;
}

.users-grid[b-9ru3xooad1] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.user-card[b-9ru3xooad1] {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    cursor: pointer;
}

.user-card:hover[b-9ru3xooad1] {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.user-avatar[b-9ru3xooad1] {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-bottom: 0.5rem;
}

.avatar-text[b-9ru3xooad1] {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.user-info[b-9ru3xooad1] {
    text-align: center;
    flex: 1;
}

.user-name[b-9ru3xooad1] {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--bs-dark);
    margin: 0 0 0.5rem 0;
}

.user-email[b-9ru3xooad1] {
    color: var(--bs-secondary);
    font-size: 0.875rem;
    margin: 0 0 1rem 0;
    word-break: break-word;
}

.user-roles[b-9ru3xooad1] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1rem;
}

.role-badge[b-9ru3xooad1] {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.role-badge.admin[b-9ru3xooad1] {
    background: rgba(245, 87, 108, 0.1);
    color: #f5576c;
    border-color: rgba(245, 87, 108, 0.2);
}

.role-badge.user[b-9ru3xooad1] {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border-color: rgba(40, 167, 69, 0.2);
}

.user-actions[b-9ru3xooad1] {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user-id[b-9ru3xooad1] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.view-profile[b-9ru3xooad1] {
    color: #667eea;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.user-card:hover .view-profile[b-9ru3xooad1] {
    transform: translateX(3px);
    color: #764ba2;
}

.id-label[b-9ru3xooad1] {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--bs-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.id-value[b-9ru3xooad1] {
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
    font-size: 0.75rem;
    color: var(--bs-dark);
    background: rgba(0, 0, 0, 0.05);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header[b-9ru3xooad1] {
        padding: 1.5rem;
    }
    
    .header-content[b-9ru3xooad1] {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .header-icon[b-9ru3xooad1] {
        width: 56px;
        height: 56px;
        font-size: 1.75rem;
    }
    
    .header-text h1[b-9ru3xooad1] {
        font-size: 1.75rem;
    }
    
    .header-text p[b-9ru3xooad1] {
        font-size: 1rem;
    }
    
    .header-stats[b-9ru3xooad1] {
        justify-content: center;
    }
    
    .users-grid[b-9ru3xooad1] {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .user-card[b-9ru3xooad1] {
        padding: 1rem;
    }
    
    .user-avatar[b-9ru3xooad1] {
        width: 56px;
        height: 56px;
    }
    
    .avatar-text[b-9ru3xooad1] {
        font-size: 1.125rem;
    }
}

@media (max-width: 576px) {
    .stat-item[b-9ru3xooad1] {
        padding: 0.75rem;
    }
    
    .stat-number[b-9ru3xooad1] {
        font-size: 1.5rem;
    }
    
    .stat-label[b-9ru3xooad1] {
        font-size: 0.75rem;
    }
    
    .user-name[b-9ru3xooad1] {
        font-size: 1.125rem;
    }
    
    .user-email[b-9ru3xooad1] {
        font-size: 0.8125rem;
    }
}
