/* _content/LifeOwnerSite.UI/Components/Pages/UserProfile.razor.rz.scp.css */
/* User Profile Layout */
.user-profile-layout[b-ittzjeu2v4] {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: calc(100vh - 200px);
    padding: 2rem;
    background-color: #fafafa;
}

.user-profile-content[b-ittzjeu2v4] {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

/* Header */
.user-profile-header-container[b-ittzjeu2v4] {
    margin-bottom: 2rem;
}

.user-profile-header-flex[b-ittzjeu2v4] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.user-profile-header[b-ittzjeu2v4] {
    color: #3f5b6a;
    font-size: 2rem;
    margin: 0;
}

/* User Info Display */
.user-info-inline[b-ittzjeu2v4] {
    display: flex;
    align-items: center;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.user-info-content[b-ittzjeu2v4] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-icon[b-ittzjeu2v4] {
    width: 48px;
    height: 48px;
    background: #7b96a7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.user-details[b-ittzjeu2v4] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.user-name[b-ittzjeu2v4] {
    color: #3f5b6a;
    font-size: 1.125rem;
}

.user-email[b-ittzjeu2v4] {
    color: #5c5d60;
    font-size: 0.875rem;
}

/* Tab Navigation */
.profile-tabs-container[b-ittzjeu2v4] {
    background: white;
    border-radius: 12px;
    padding: 0.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.profile-tabs[b-ittzjeu2v4] {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.profile-tab[b-ittzjeu2v4] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.25rem;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: #5c5d60;
    font-family: 'Adlinnaka-MediumCondensed', Helvetica;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    position: relative;
}

.profile-tab:hover[b-ittzjeu2v4] {
    background: #dfe4e7;
    color: #3f5b6a;
}

.profile-tab.active[b-ittzjeu2v4] {
    background: #3f5b6a;
    color: white;
}

.profile-tab .badge[b-ittzjeu2v4] {
    background: #8c2232;
    color: white;
    border-radius: 12px;
    padding: 0.125rem 0.5rem;
    font-size: 0.75rem;
    font-weight: bold;
    min-width: 20px;
    text-align: center;
}

.profile-tab.active .badge[b-ittzjeu2v4] {
    background: white;
    color: #8c2232;
}

/* Tab Content */
.profile-tab-content[b-ittzjeu2v4] {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    min-height: 400px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.tab-panel[b-ittzjeu2v4] {
    animation: fadeIn-b-ittzjeu2v4 0.3s ease-in;
}

@keyframes fadeIn-b-ittzjeu2v4 {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Skeleton Loading */
.user-profile-skeleton-owner-info .user-profile-skeleton-circle[b-ittzjeu2v4] {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(90deg, #dfe4e7 25%, #f0f2f3 50%, #dfe4e7 75%);
    background-size: 200% 100%;
    animation: shimmer-b-ittzjeu2v4 1.5s infinite;
}

.user-profile-skeleton-line[b-ittzjeu2v4] {
    height: 16px;
    background: linear-gradient(90deg, #dfe4e7 25%, #f0f2f3 50%, #dfe4e7 75%);
    background-size: 200% 100%;
    animation: shimmer-b-ittzjeu2v4 1.5s infinite;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.user-profile-skeleton-line--name[b-ittzjeu2v4] {
    width: 120px;
}

.user-profile-skeleton-line--full-name[b-ittzjeu2v4] {
    width: 180px;
}

.user-profile-skeleton-line--address[b-ittzjeu2v4] {
    width: 220px;
}

@keyframes shimmer-b-ittzjeu2v4 {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .user-profile-layout[b-ittzjeu2v4] {
        padding: 1rem;
    }
    
    .user-profile-header-flex[b-ittzjeu2v4] {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .profile-tabs[b-ittzjeu2v4] {
        flex-wrap: nowrap;
        overflow-x: auto;
    }
    
    .profile-tab[b-ittzjeu2v4] {
        flex-shrink: 0;
    }
    
    .profile-tab-content[b-ittzjeu2v4] {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .user-profile-header[b-ittzjeu2v4] {
        font-size: 1.5rem;
    }
    
    .profile-tab[b-ittzjeu2v4] {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    .profile-tab span[b-ittzjeu2v4] {
        display: none;
    }
    
    .profile-tab i[b-ittzjeu2v4] {
        margin: 0;
    }
}
/* _content/LifeOwnerSite.UI/Components/UserProfile/AnnualStatementsSection.razor.rz.scp.css */
.annual-statements-section[b-kxexrnu16b] {
    padding: 2rem;
}

.section-title[b-kxexrnu16b] {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #003B5C;
}

.annual-statements-list[b-kxexrnu16b] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.annual-statement-item[b-kxexrnu16b] {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.annual-statement-item:hover[b-kxexrnu16b] {
    border-color: #003B5C;
    box-shadow: 0 2px 8px rgba(0, 59, 92, 0.1);
}

.annual-statement-icon[b-kxexrnu16b] {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0066B3 0%, #0080CC 100%);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.5rem;
}

.annual-statement-content[b-kxexrnu16b] {
    flex: 1;
    min-width: 0;
}

.annual-statement-name[b-kxexrnu16b] {
    font-size: 1.1rem;
    color: #003B5C;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.annual-statement-meta[b-kxexrnu16b] {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.annual-statement-meta span[b-kxexrnu16b] {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.annual-statement-year[b-kxexrnu16b] {
    color: #003B5C;
    font-weight: 500;
}

.annual-statement-date[b-kxexrnu16b] {
    color: #666;
}

.annual-statement-policy[b-kxexrnu16b] {
    color: #0066B3;
}

.annual-statement-description[b-kxexrnu16b] {
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    line-height: 1.4;
}

.annual-statement-actions[b-kxexrnu16b] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex-shrink: 0;
}

.btn-download[b-kxexrnu16b],
.btn-view[b-kxexrnu16b] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid #003B5C;
    border-radius: 4px;
    color: #003B5C;
    background: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-download:hover[b-kxexrnu16b],
.btn-view:hover[b-kxexrnu16b] {
    background: #003B5C;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 59, 92, 0.2);
}

.btn-download i[b-kxexrnu16b],
.btn-view i[b-kxexrnu16b] {
    font-size: 1rem;
}

.empty-state[b-kxexrnu16b] {
    text-align: center;
    padding: 3rem 1rem;
    color: #666;
}

.empty-state i[b-kxexrnu16b] {
    font-size: 3rem;
    color: #ccc;
    margin-bottom: 1rem;
}

.empty-state p[b-kxexrnu16b] {
    font-size: 1.1rem;
    color: #999;
}

.list-skeleton[b-kxexrnu16b] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.skeleton-item[b-kxexrnu16b] {
    padding: 1.25rem;
    background: #f5f5f5;
    border-radius: 8px;
    animation: pulse-b-kxexrnu16b 1.5s ease-in-out infinite;
}

.skeleton-line[b-kxexrnu16b] {
    height: 16px;
    background: #e0e0e0;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.skeleton-line--short[b-kxexrnu16b] {
    width: 60%;
}

@keyframes pulse-b-kxexrnu16b {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@media (max-width: 768px) {
    .annual-statements-section[b-kxexrnu16b] {
        padding: 1rem;
    }

    .annual-statement-item[b-kxexrnu16b] {
        flex-direction: column;
    }

    .annual-statement-meta[b-kxexrnu16b] {
        flex-direction: column;
        gap: 0.5rem;
    }

    .annual-statement-actions[b-kxexrnu16b] {
        width: 100%;
    }

    .btn-download[b-kxexrnu16b],
    .btn-view[b-kxexrnu16b] {
        width: 100%;
        justify-content: center;
    }
}
/* _content/LifeOwnerSite.UI/Components/UserProfile/FormsSubmittedSection.razor.rz.scp.css */
/* Forms Section */
.forms-section[b-w6vomaxo4q] {
    width: 100%;
}

.section-title[b-w6vomaxo4q] {
    color: #3f5b6a;
    font-size: 1.5rem;
    margin: 0 0 1.5rem 0;
    padding-bottom: 1rem;
    border-bottom: 2px solid #dfe4e7;
}

.forms-list[b-w6vomaxo4q] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-item[b-w6vomaxo4q] {
    display: flex;
    gap: 1rem;
    background: #fafafa;
    border: 1px solid #dfe4e7;
    border-radius: 8px;
    padding: 1.25rem;
    transition: all 0.2s ease;
}

.form-item:hover[b-w6vomaxo4q] {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.form-icon[b-w6vomaxo4q] {
    width: 40px;
    height: 40px;
    background: #7b96a7;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.form-content[b-w6vomaxo4q] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-name[b-w6vomaxo4q] {
    color: #3f5b6a;
    font-size: 1rem;
}

.form-meta[b-w6vomaxo4q] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #5c5d60;
}

.form-meta span[b-w6vomaxo4q] {
    position: relative;
    padding-right: 0.75rem;
}

.form-meta span:not(:last-child)[b-w6vomaxo4q]::after {
    content: "�";
    position: absolute;
    right: 0;
    color: #afb8bd;
}

.form-notes[b-w6vomaxo4q] {
    font-size: 0.875rem;
    color: #5c5d60;
    font-style: italic;
}

.form-status[b-w6vomaxo4q] {
    display: flex;
    align-items: center;
}

.status-badge[b-w6vomaxo4q] {
    padding: 0.375rem 0.875rem;
    border-radius: 12px;
    font-size: 0.75rem;
    text-transform: uppercase;
    white-space: nowrap;
}

.status-badge.status-approved[b-w6vomaxo4q],
.status-badge.status-complete[b-w6vomaxo4q] {
    background: #d4edda;
    color: #155724;
}

.status-badge.status-pending[b-w6vomaxo4q],
.status-badge.status-processing[b-w6vomaxo4q] {
    background: #fff3cd;
    color: #856404;
}

.status-badge.status-rejected[b-w6vomaxo4q],
.status-badge.status-failed[b-w6vomaxo4q] {
    background: #f8d7da;
    color: #721c24;
}

/* Empty State */
.empty-state[b-w6vomaxo4q] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    text-align: center;
    color: #afb8bd;
}

.empty-state i[b-w6vomaxo4q] {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.empty-state p[b-w6vomaxo4q] {
    font-size: 1.125rem;
    margin: 0;
}

/* Skeleton Loading */
.list-skeleton[b-w6vomaxo4q] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.skeleton-item[b-w6vomaxo4q] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.25rem;
    background: #fafafa;
    border-radius: 8px;
}

.skeleton-line[b-w6vomaxo4q] {
    height: 16px;
    background: linear-gradient(90deg, #dfe4e7 25%, #f0f2f3 50%, #dfe4e7 75%);
    background-size: 200% 100%;
    animation: shimmer-b-w6vomaxo4q 1.5s infinite;
    border-radius: 4px;
}

.skeleton-line--short[b-w6vomaxo4q] {
    width: 60%;
}

@keyframes shimmer-b-w6vomaxo4q {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}
/* _content/LifeOwnerSite.UI/Components/UserProfile/InboxSection.razor.rz.scp.css */
/* Inbox Section */
.inbox-section[b-gu841yk6fb] {
    width: 100%;
}

.section-title[b-gu841yk6fb] {
    color: #3f5b6a;
    font-size: 1.5rem;
    margin: 0 0 1.5rem 0;
    padding-bottom: 1rem;
    border-bottom: 2px solid #dfe4e7;
}

.message-list[b-gu841yk6fb] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message-item[b-gu841yk6fb] {
    display: flex;
    gap: 1rem;
    background: #fafafa;
    border: 1px solid #dfe4e7;
    border-radius: 8px;
    padding: 1.25rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.message-item.unread[b-gu841yk6fb] {
    background: white;
    border-color: #7b96a7;
}

.message-item:hover[b-gu841yk6fb] {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.message-indicator[b-gu841yk6fb] {
    width: 8px;
    flex-shrink: 0;
}

.unread-dot[b-gu841yk6fb] {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #8c2232;
    border-radius: 50%;
}

.message-content[b-gu841yk6fb] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.message-header[b-gu841yk6fb] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.message-subject[b-gu841yk6fb] {
    color: #3f5b6a;
    font-size: 1rem;
}

.message-item.unread .message-subject[b-gu841yk6fb] {
    font-weight: bold;
}

.message-date[b-gu841yk6fb] {
    color: #5c5d60;
    font-size: 0.875rem;
    white-space: nowrap;
}

.message-sender[b-gu841yk6fb] {
    font-size: 0.875rem;
    color: #5c5d60;
}

.message-preview[b-gu841yk6fb] {
    font-size: 0.875rem;
    color: #5c5d60;
    line-height: 1.5;
}

.message-attachments[b-gu841yk6fb] {
    font-size: 0.75rem;
    color: #7b96a7;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.message-priority[b-gu841yk6fb] {
    display: flex;
    align-items: center;
    color: #8c2232;
    font-size: 1.25rem;
}

/* Empty State */
.empty-state[b-gu841yk6fb] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    text-align: center;
    color: #afb8bd;
}

.empty-state i[b-gu841yk6fb] {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.empty-state p[b-gu841yk6fb] {
    font-size: 1.125rem;
    margin: 0;
}

/* Skeleton Loading */
.list-skeleton[b-gu841yk6fb] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.skeleton-item[b-gu841yk6fb] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.25rem;
    background: #fafafa;
    border-radius: 8px;
}

.skeleton-line[b-gu841yk6fb] {
    height: 16px;
    background: linear-gradient(90deg, #dfe4e7 25%, #f0f2f3 50%, #dfe4e7 75%);
    background-size: 200% 100%;
    animation: shimmer-b-gu841yk6fb 1.5s infinite;
    border-radius: 4px;
}

.skeleton-line--short[b-gu841yk6fb] {
    width: 60%;
}

@keyframes shimmer-b-gu841yk6fb {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .message-header[b-gu841yk6fb] {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* _content/LifeOwnerSite.UI/Components/UserProfile/PaymentHistorySection.razor.rz.scp.css */
/* Payment History */
.payment-history-section[b-r4e2emwbbf] {
    width: 100%;
}

.section-title[b-r4e2emwbbf] {
    color: #3f5b6a;
    font-size: 1.5rem;
    margin: 0 0 1.5rem 0;
    padding-bottom: 1rem;
    border-bottom: 2px solid #dfe4e7;
}

.payment-list[b-r4e2emwbbf] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-item[b-r4e2emwbbf] {
    background: #fafafa;
    border: 1px solid #dfe4e7;
    border-radius: 8px;
    padding: 1.25rem;
    transition: all 0.2s ease;
}

.payment-item:hover[b-r4e2emwbbf] {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.payment-header[b-r4e2emwbbf] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.payment-info[b-r4e2emwbbf] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.payment-date[b-r4e2emwbbf] {
    color: #3f5b6a;
    font-size: 1rem;
}

.payment-policy[b-r4e2emwbbf] {
    color: #5c5d60;
    font-size: 0.875rem;
}

.payment-amount[b-r4e2emwbbf] {
    font-size: 1.25rem;
}

.payment-details[b-r4e2emwbbf] {
    display: flex;
    gap: 1rem;
    align-items: center;
    font-size: 0.875rem;
    color: #5c5d60;
}

.payment-status[b-r4e2emwbbf] {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.payment-status.status-completed[b-r4e2emwbbf],
.payment-status.status-success[b-r4e2emwbbf] {
    background: #d4edda;
    color: #155724;
}

.payment-status.status-pending[b-r4e2emwbbf] {
    background: #fff3cd;
    color: #856404;
}

.payment-status.status-failed[b-r4e2emwbbf] {
    background: #f8d7da;
    color: #721c24;
}

.payment-confirmation[b-r4e2emwbbf] {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: #5c5d60;
}

/* Empty State */
.empty-state[b-r4e2emwbbf] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    text-align: center;
    color: #afb8bd;
}

.empty-state i[b-r4e2emwbbf] {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.empty-state p[b-r4e2emwbbf] {
    font-size: 1.125rem;
    margin: 0;
}

/* Skeleton Loading */
.list-skeleton[b-r4e2emwbbf] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.skeleton-item[b-r4e2emwbbf] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.25rem;
    background: #fafafa;
    border-radius: 8px;
}

.skeleton-line[b-r4e2emwbbf] {
    height: 16px;
    background: linear-gradient(90deg, #dfe4e7 25%, #f0f2f3 50%, #dfe4e7 75%);
    background-size: 200% 100%;
    animation: shimmer-b-r4e2emwbbf 1.5s infinite;
    border-radius: 4px;
}

.skeleton-line--short[b-r4e2emwbbf] {
    width: 60%;
}

@keyframes shimmer-b-r4e2emwbbf {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .payment-header[b-r4e2emwbbf] {
        flex-direction: column;
        gap: 0.5rem;
    }
}
/* _content/LifeOwnerSite.UI/Components/UserProfile/ProfileInformationSection.razor.rz.scp.css */
/* Profile Section */
.profile-section[b-at5l36cgsz] {
    width: 100%;
}

.section-title[b-at5l36cgsz] {
    color: #3f5b6a;
    font-size: 1.5rem;
    margin: 0 0 1.5rem 0;
    padding-bottom: 1rem;
    border-bottom: 2px solid #dfe4e7;
}

/* Profile Form */
.profile-form[b-at5l36cgsz] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row[b-at5l36cgsz] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.form-group[b-at5l36cgsz] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width[b-at5l36cgsz] {
    grid-column: 1 / -1;
}

.form-group label[b-at5l36cgsz] {
    color: #5c5d60;
    font-size: 0.875rem;
    font-weight: 600;
}

.form-value[b-at5l36cgsz] {
    color: #282828;
    font-family: 'Adlinnaka-MediumCondensed', Helvetica;
    font-size: 1rem;
    padding: 0.75rem;
    background: #fafafa;
    border-radius: 6px;
}

.profile-actions[b-at5l36cgsz] {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #dfe4e7;
}

/* Skeleton Loading */
.profile-skeleton[b-at5l36cgsz] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.skeleton-line[b-at5l36cgsz] {
    height: 16px;
    background: linear-gradient(90deg, #dfe4e7 25%, #f0f2f3 50%, #dfe4e7 75%);
    background-size: 200% 100%;
    animation: shimmer-b-at5l36cgsz 1.5s infinite;
    border-radius: 4px;
}

.skeleton-line--title[b-at5l36cgsz] {
    height: 24px;
    width: 40%;
}

.skeleton-line--short[b-at5l36cgsz] {
    width: 60%;
}

@keyframes shimmer-b-at5l36cgsz {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-row[b-at5l36cgsz] {
        grid-template-columns: 1fr;
    }
}
/* _content/LifeOwnerSite.UI/Components/UserProfile/TaxFormsSection.razor.rz.scp.css */
.tax-forms-section[b-jmh6oogwpv] {
    padding: 2rem;
}

.section-title[b-jmh6oogwpv] {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #003B5C;
}

.tax-forms-list[b-jmh6oogwpv] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tax-form-item[b-jmh6oogwpv] {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.tax-form-item:hover[b-jmh6oogwpv] {
    border-color: #003B5C;
    box-shadow: 0 2px 8px rgba(0, 59, 92, 0.1);
}

.tax-form-icon[b-jmh6oogwpv] {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #003B5C 0%, #005580 100%);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.5rem;
}

.tax-form-content[b-jmh6oogwpv] {
    flex: 1;
    min-width: 0;
}

.tax-form-name[b-jmh6oogwpv] {
    font-size: 1.1rem;
    color: #003B5C;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.tax-form-meta[b-jmh6oogwpv] {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.tax-form-meta span[b-jmh6oogwpv] {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.tax-form-year[b-jmh6oogwpv] {
    color: #003B5C;
    font-weight: 500;
}

.tax-form-date[b-jmh6oogwpv] {
    color: #666;
}

.tax-form-policy[b-jmh6oogwpv] {
    color: #0066B3;
}

.tax-form-description[b-jmh6oogwpv] {
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    line-height: 1.4;
}

.tax-form-actions[b-jmh6oogwpv] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex-shrink: 0;
}

.btn-download[b-jmh6oogwpv],
.btn-view[b-jmh6oogwpv] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid #003B5C;
    border-radius: 4px;
    color: #003B5C;
    background: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-download:hover[b-jmh6oogwpv],
.btn-view:hover[b-jmh6oogwpv] {
    background: #003B5C;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 59, 92, 0.2);
}

.btn-download i[b-jmh6oogwpv],
.btn-view i[b-jmh6oogwpv] {
    font-size: 1rem;
}

.empty-state[b-jmh6oogwpv] {
    text-align: center;
    padding: 3rem 1rem;
    color: #666;
}

.empty-state i[b-jmh6oogwpv] {
    font-size: 3rem;
    color: #ccc;
    margin-bottom: 1rem;
}

.empty-state p[b-jmh6oogwpv] {
    font-size: 1.1rem;
    color: #999;
}

.list-skeleton[b-jmh6oogwpv] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.skeleton-item[b-jmh6oogwpv] {
    padding: 1.25rem;
    background: #f5f5f5;
    border-radius: 8px;
    animation: pulse-b-jmh6oogwpv 1.5s ease-in-out infinite;
}

.skeleton-line[b-jmh6oogwpv] {
    height: 16px;
    background: #e0e0e0;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.skeleton-line--short[b-jmh6oogwpv] {
    width: 60%;
}

@keyframes pulse-b-jmh6oogwpv {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@media (max-width: 768px) {
    .tax-forms-section[b-jmh6oogwpv] {
        padding: 1rem;
    }

    .tax-form-item[b-jmh6oogwpv] {
        flex-direction: column;
    }

    .tax-form-meta[b-jmh6oogwpv] {
        flex-direction: column;
        gap: 0.5rem;
    }

    .tax-form-actions[b-jmh6oogwpv] {
        width: 100%;
    }

    .btn-download[b-jmh6oogwpv],
    .btn-view[b-jmh6oogwpv] {
        width: 100%;
        justify-content: center;
    }
}
/* _content/LifeOwnerSite.UI/Components/UserProfile/UploadHistorySection.razor.rz.scp.css */
/* Upload History Section */
.upload-history-section[b-wbqnrtehlv] {
    width: 100%;
}

.section-title[b-wbqnrtehlv] {
    color: #3f5b6a;
    font-size: 1.5rem;
    margin: 0 0 1.5rem 0;
    padding-bottom: 1rem;
    border-bottom: 2px solid #dfe4e7;
}

.upload-list[b-wbqnrtehlv] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.upload-item[b-wbqnrtehlv] {
    display: flex;
    gap: 1rem;
    background: #fafafa;
    border: 1px solid #dfe4e7;
    border-radius: 8px;
    padding: 1.25rem;
    transition: all 0.2s ease;
}

.upload-item:hover[b-wbqnrtehlv] {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.upload-icon[b-wbqnrtehlv] {
    width: 40px;
    height: 40px;
    background: #7b96a7;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.upload-content[b-wbqnrtehlv] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.upload-name[b-wbqnrtehlv] {
    color: #3f5b6a;
    font-size: 1rem;
}

.upload-meta[b-wbqnrtehlv] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #5c5d60;
}

.upload-meta span[b-wbqnrtehlv] {
    position: relative;
    padding-right: 0.75rem;
}

.upload-meta span:not(:last-child)[b-wbqnrtehlv]::after {
    content: "�";
    position: absolute;
    right: 0;
    color: #afb8bd;
}

.upload-status[b-wbqnrtehlv] {
    display: flex;
    align-items: center;
}

.status-badge[b-wbqnrtehlv] {
    padding: 0.375rem 0.875rem;
    border-radius: 12px;
    font-size: 0.75rem;
    text-transform: uppercase;
    white-space: nowrap;
}

.status-badge.status-uploaded[b-wbqnrtehlv] {
    background: #d4edda;
    color: #155724;
}

.status-badge.status-pending[b-wbqnrtehlv],
.status-badge.status-processing[b-wbqnrtehlv] {
    background: #fff3cd;
    color: #856404;
}

.status-badge.status-failed[b-wbqnrtehlv] {
    background: #f8d7da;
    color: #721c24;
}

/* Empty State */
.empty-state[b-wbqnrtehlv] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    text-align: center;
    color: #afb8bd;
}

.empty-state i[b-wbqnrtehlv] {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.empty-state p[b-wbqnrtehlv] {
    font-size: 1.125rem;
    margin: 0;
}

/* Skeleton Loading */
.list-skeleton[b-wbqnrtehlv] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.skeleton-item[b-wbqnrtehlv] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.25rem;
    background: #fafafa;
    border-radius: 8px;
}

.skeleton-line[b-wbqnrtehlv] {
    height: 16px;
    background: linear-gradient(90deg, #dfe4e7 25%, #f0f2f3 50%, #dfe4e7 75%);
    background-size: 200% 100%;
    animation: shimmer-b-wbqnrtehlv 1.5s infinite;
    border-radius: 4px;
}

.skeleton-line--short[b-wbqnrtehlv] {
    width: 60%;
}

@keyframes shimmer-b-wbqnrtehlv {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}
