/* /AdminStuff/AdminPages/RunTimeParameters.razor.rz.scp.css */
/* Runtime Page Container */
.runtime-page[b-zc91fue8g0] {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Page Header */
.runtime-header[b-zc91fue8g0] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.25);
}

.header-content[b-zc91fue8g0] {
    max-width: 1200px;
    margin: 0 auto;
}

.page-title[b-zc91fue8g0] {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.page-title i[b-zc91fue8g0] {
    font-size: 36px;
}

.page-subtitle[b-zc91fue8g0] {
    font-size: 15px;
    opacity: 0.95;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Runtime Section */
.runtime-section[b-zc91fue8g0] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.section-title[b-zc91fue8g0] {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    padding: 24px 32px;
    background: linear-gradient(90deg, #f3f4f6 0%, #ffffff 100%);
    border-bottom: 2px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title i[b-zc91fue8g0] {
    font-size: 22px;
    color: #667eea;
}

/* Parameters Container */
.parameters-container[b-zc91fue8g0] {
    padding: 32px;
}

.parameters-grid[b-zc91fue8g0] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}

/* Parameter Card */
.parameter-card[b-zc91fue8g0] {
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.parameter-card:hover[b-zc91fue8g0] {
    border-color: #dbeafe;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.1);
    background: #ffffff;
}

.card-header[b-zc91fue8g0] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: linear-gradient(90deg, rgba(102, 126, 234, 0.05) 0%, rgba(102, 126, 234, 0.02) 100%);
    border-bottom: 1px solid #e5e7eb;
}

.param-index[b-zc91fue8g0] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #667eea;
}

.param-index i[b-zc91fue8g0] {
    font-size: 14px;
}

.btn-delete-param[b-zc91fue8g0] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #fee2e2;
    color: #dc2626;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
}

.btn-delete-param:hover[b-zc91fue8g0] {
    background: #fecaca;
    transform: scale(1.05);
}

.btn-delete-param:active[b-zc91fue8g0] {
    transform: scale(0.98);
}

.card-body[b-zc91fue8g0] {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Form Row - Side-by-side layout for parameter fields */
.form-row[b-zc91fue8g0] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* Form Group */
.form-group[b-zc91fue8g0] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label[b-zc91fue8g0] {
    font-size: 12px;
    font-weight: 700;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    padding: 0;
}

.form-label i[b-zc91fue8g0] {
    font-size: 12px;
    color: #667eea;
}

.form-input[b-zc91fue8g0] {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 13px;
    font-family: inherit;
    transition: all 0.2s ease;
    background: white;
    color: #1f2937;
    min-height: 40px;
}

.form-input[b-zc91fue8g0]::placeholder {
    color: #9ca3af;
    font-style: italic;
}

.form-input:focus[b-zc91fue8g0] {
    outline: none;
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.02);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-input:hover:not(:focus)[b-zc91fue8g0] {
    border-color: #d1d5db;
}

/* Button Section */
.button-section[b-zc91fue8g0] {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    padding: 0 32px 24px 32px;
    border-top: 1px solid #e5e7eb;
}

.btn-add-param[b-zc91fue8g0],
.btn-save-params[b-zc91fue8g0] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: inherit;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.btn-add-param[b-zc91fue8g0] {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    border: 2px solid #dbeafe;
}

.btn-add-param:hover[b-zc91fue8g0] {
    background: rgba(102, 126, 234, 0.15);
    border-color: #667eea;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.2);
    transform: translateY(-2px);
}

.btn-add-param:active[b-zc91fue8g0] {
    transform: translateY(0);
}

.btn-save-params[b-zc91fue8g0] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-save-params:hover[b-zc91fue8g0] {
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
    transform: translateY(-2px);
}

.btn-save-params:active[b-zc91fue8g0] {
    transform: translateY(0);
}

.btn-add-param i[b-zc91fue8g0],
.btn-save-params i[b-zc91fue8g0] {
    font-size: 16px;
}

/* Info Box */
.info-box[b-zc91fue8g0] {
    display: flex;
    gap: 12px;
    margin: 24px 32px 0 32px;
    padding: 16px;
    background: rgba(251, 191, 36, 0.08);
    border: 2px solid rgba(251, 191, 36, 0.2);
    border-radius: 10px;
    font-size: 13px;
    color: #92400e;
}

.info-box i[b-zc91fue8g0] {
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    color: #f59e0b;
}

.info-content[b-zc91fue8g0] {
    flex: 1;
}

.info-content p[b-zc91fue8g0] {
    margin: 0;
    line-height: 1.5;
}

/* Empty State */
.empty-state[b-zc91fue8g0] {
    text-align: center;
    padding: 48px 32px;
    color: #9ca3af;
}

.empty-state i[b-zc91fue8g0] {
    font-size: 48px;
    color: #d1d5db;
    display: block;
    margin-bottom: 12px;
}

.empty-state p[b-zc91fue8g0] {
    font-size: 16px;
    margin: 0 0 8px 0;
    color: #6b7280;
    font-weight: 600;
}

.empty-hint[b-zc91fue8g0] {
    font-size: 13px;
    color: #9ca3af;
    display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .parameters-grid[b-zc91fue8g0] {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 16px;
    }

    .button-section[b-zc91fue8g0] {
        padding: 0 24px 20px 24px;
    }

    .info-box[b-zc91fue8g0] {
        margin: 20px 24px 0 24px;
    }
}

@media (max-width: 768px) {
    .runtime-header[b-zc91fue8g0] {
        padding: 28px 20px;
    }

    .page-title[b-zc91fue8g0] {
        font-size: 24px;
    }

    .page-subtitle[b-zc91fue8g0] {
        font-size: 13px;
    }

    .section-title[b-zc91fue8g0] {
        font-size: 17px;
        padding: 18px 20px;
    }

    .parameters-container[b-zc91fue8g0] {
        padding: 20px;
    }

    .parameters-grid[b-zc91fue8g0] {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 16px;
    }

    .form-row[b-zc91fue8g0] {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .button-section[b-zc91fue8g0] {
        flex-direction: column;
        gap: 10px;
        padding: 0 20px 16px 20px;
    }

    .btn-add-param[b-zc91fue8g0],
    .btn-save-params[b-zc91fue8g0] {
        width: 100%;
        justify-content: center;
        padding: 11px 20px;
        font-size: 13px;
    }

    .card-body[b-zc91fue8g0] {
        padding: 14px;
        gap: 12px;
    }

    .form-input[b-zc91fue8g0] {
        min-height: 36px;
        padding: 8px 10px;
        font-size: 12px;
    }

    .form-label[b-zc91fue8g0] {
        font-size: 11px;
    }

    .info-box[b-zc91fue8g0] {
        margin: 16px 20px 0 20px;
        padding: 12px;
        font-size: 12px;
    }

    .empty-state[b-zc91fue8g0] {
        padding: 36px 20px;
    }

    .empty-state i[b-zc91fue8g0] {
        font-size: 40px;
        margin-bottom: 10px;
    }

    .empty-state p[b-zc91fue8g0] {
        font-size: 14px;
    }

    .empty-hint[b-zc91fue8g0] {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .runtime-page[b-zc91fue8g0] {
        gap: 16px;
    }

    .runtime-header[b-zc91fue8g0] {
        padding: 20px 16px;
        border-radius: 8px;
    }

    .page-title[b-zc91fue8g0] {
        font-size: 20px;
        gap: 8px;
    }

    .page-title i[b-zc91fue8g0] {
        font-size: 24px;
    }

    .page-subtitle[b-zc91fue8g0] {
        font-size: 12px;
    }

    .runtime-section[b-zc91fue8g0] {
        border-radius: 8px;
    }

    .section-title[b-zc91fue8g0] {
        font-size: 15px;
        padding: 16px;
        gap: 10px;
    }

    .section-title i[b-zc91fue8g0] {
        font-size: 18px;
    }

    .parameters-container[b-zc91fue8g0] {
        padding: 16px;
    }

    .parameters-grid[b-zc91fue8g0] {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 12px;
    }

    .parameter-card[b-zc91fue8g0] {
        border-radius: 10px;
    }

    .card-header[b-zc91fue8g0] {
        padding: 12px 14px;
        font-size: 12px;
    }

    .card-body[b-zc91fue8g0] {
        padding: 12px;
        gap: 10px;
    }

    .form-label[b-zc91fue8g0] {
        font-size: 10px;
        gap: 5px;
    }

    .form-input[b-zc91fue8g0] {
        min-height: 34px;
        padding: 7px 8px;
        font-size: 12px;
    }

    .button-section[b-zc91fue8g0] {
        flex-direction: column;
        gap: 8px;
        padding: 0 16px 12px 16px;
    }

    .btn-add-param[b-zc91fue8g0],
    .btn-save-params[b-zc91fue8g0] {
        width: 100%;
        justify-content: center;
        padding: 10px 16px;
        font-size: 12px;
    }

    .btn-add-param i[b-zc91fue8g0],
    .btn-save-params i[b-zc91fue8g0] {
        font-size: 14px;
    }

    .info-box[b-zc91fue8g0] {
        margin: 12px 16px 0 16px;
        padding: 10px;
        font-size: 11px;
        border-radius: 8px;
    }

    .info-box i[b-zc91fue8g0] {
        font-size: 14px;
    }

    .empty-state[b-zc91fue8g0] {
        padding: 28px 16px;
    }

    .empty-state i[b-zc91fue8g0] {
        font-size: 36px;
        margin-bottom: 8px;
    }

    .empty-state p[b-zc91fue8g0] {
        font-size: 13px;
    }

    .empty-hint[b-zc91fue8g0] {
        font-size: 11px;
    }
}

/* Print Styles */
@media print {
    .runtime-page[b-zc91fue8g0] {
        gap: 12px;
    }

    .runtime-header[b-zc91fue8g0] {
        box-shadow: none;
    }

    .runtime-section[b-zc91fue8g0] {
        box-shadow: none;
        border: 1px solid #d1d5db;
    }

    .btn-add-param[b-zc91fue8g0],
    .btn-save-params[b-zc91fue8g0],
    .btn-delete-param[b-zc91fue8g0] {
        display: none;
    }

    .info-box[b-zc91fue8g0] {
        display: none;
    }
}
/* /AdminStuff/AdminPages/StatsPage.razor.rz.scp.css */
/* Stats Page Container */
.stats-page[b-8pdy6430rd] {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Page Header */
.stats-header[b-8pdy6430rd] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.25);
}

.header-content[b-8pdy6430rd] {
    max-width: 1200px;
    margin: 0 auto;
}

.page-title[b-8pdy6430rd] {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.page-title i[b-8pdy6430rd] {
    font-size: 36px;
}

.page-subtitle[b-8pdy6430rd] {
    font-size: 15px;
    opacity: 0.95;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Stats Overview Cards */
.stats-overview[b-8pdy6430rd] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.stat-card[b-8pdy6430rd] {
    background: white;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.stat-card:hover[b-8pdy6430rd] {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
    border-color: #dbeafe;
}

.stat-icon[b-8pdy6430rd] {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
    color: white;
}

.stat-icon.persons[b-8pdy6430rd] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.stat-icon.users[b-8pdy6430rd] {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.stat-icon.artifacts[b-8pdy6430rd] {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.stat-icon.comments[b-8pdy6430rd] {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.stat-content[b-8pdy6430rd] {
    flex: 1;
}

.stat-label[b-8pdy6430rd] {
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.stat-value[b-8pdy6430rd] {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
}

/* Stats Section */
.stats-section[b-8pdy6430rd] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.section-title[b-8pdy6430rd] {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    padding: 24px 32px;
    background: linear-gradient(90deg, #f3f4f6 0%, #ffffff 100%);
    border-bottom: 2px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title i[b-8pdy6430rd] {
    font-size: 22px;
    color: #667eea;
}

/* Filter Section */
.filter-section[b-8pdy6430rd] {
    padding: 24px 32px;
    border-bottom: 1px solid #e5e7eb;
    background: linear-gradient(90deg, #f9fafb 0%, #ffffff 100%);
}

.filter-wrapper[b-8pdy6430rd] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Date Range Card */
.date-range-card[b-8pdy6430rd] {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.date-range-card:hover[b-8pdy6430rd] {
    border-color: #dbeafe;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.1);
}

.date-range-header[b-8pdy6430rd] {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
    font-size: 14px;
    font-weight: 700;
    color: #1f2937;
}

.date-range-header i[b-8pdy6430rd] {
    font-size: 16px;
    color: #667eea;
}

.date-range-content[b-8pdy6430rd] {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.date-picker-group[b-8pdy6430rd] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.date-picker-group label[b-8pdy6430rd] {
    margin: 0;
}

.date-picker-group .form-label[b-8pdy6430rd] {
    margin-bottom: 0;
}

.date-info[b-8pdy6430rd] {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 8px;
    font-size: 12px;
    color: #667eea;
    font-weight: 500;
}

.date-info i[b-8pdy6430rd] {
    font-size: 13px;
    margin-top: 1px;
    flex-shrink: 0;
}

/* Report Selector Card */
.report-selector-card[b-8pdy6430rd] {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.report-selector-card:hover[b-8pdy6430rd] {
    border-color: #dbeafe;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.1);
}

.report-selector-header[b-8pdy6430rd] {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
    font-size: 14px;
    font-weight: 700;
    color: #1f2937;
}

.report-selector-header i[b-8pdy6430rd] {
    font-size: 16px;
    color: #667eea;
}

.report-selector-content[b-8pdy6430rd] {
    display: flex;
    flex-direction: column;
}

/* Button Group */
.button-group[b-8pdy6430rd] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
}

.btn-report[b-8pdy6430rd] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 12px;
    background: white;
    color: #667eea;
    border: 2px solid #dbeafe;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: inherit;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
    text-align: center;
    min-height: 100px;
}

.btn-report:hover[b-8pdy6430rd] {
    background: rgba(102, 126, 234, 0.05);
    border-color: #667eea;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
    transform: translateY(-2px);
}

.btn-report:active[b-8pdy6430rd] {
    transform: translateY(0);
}

.btn-report.active[b-8pdy6430rd] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
}

.btn-report.active:hover[b-8pdy6430rd] {
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    transform: translateY(-3px);
}

.btn-report i[b-8pdy6430rd] {
    font-size: 20px;
}

.btn-sublabel[b-8pdy6430rd] {
    font-size: 10px;
    font-weight: 600;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    display: block;
}

.btn-report.active .btn-sublabel[b-8pdy6430rd] {
    opacity: 0.95;
}

/* Filter Label */
.filter-label[b-8pdy6430rd] {
    font-size: 12px;
    font-weight: 700;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    padding: 0;
}

.filter-label i[b-8pdy6430rd] {
    font-size: 13px;
    color: #667eea;
}

/* Results Container */
.results-container[b-8pdy6430rd] {
    padding: 32px;
}

.result-section[b-8pdy6430rd] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.result-section.hidden[b-8pdy6430rd] {
    display: none;
}

.result-header[b-8pdy6430rd] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e5e7eb;
}

.result-title[b-8pdy6430rd] {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.result-title i[b-8pdy6430rd] {
    font-size: 18px;
    color: #667eea;
}

.result-count[b-8pdy6430rd] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

/* Table Wrapper */
.table-wrapper[b-8pdy6430rd] {
    overflow-x: auto;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Data Table */
.data-table[b-8pdy6430rd] {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.data-table thead[b-8pdy6430rd] {
    background: linear-gradient(90deg, #f3f4f6 0%, #ffffff 100%);
    border-bottom: 2px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 10;
}

.data-table th[b-8pdy6430rd] {
    padding: 14px 16px;
    text-align: left;
    font-weight: 700;
    color: #1f2937;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.5px;
}

.data-table tbody tr[b-8pdy6430rd] {
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.2s ease;
}

.data-table tbody tr:hover[b-8pdy6430rd] {
    background: rgba(102, 126, 234, 0.03);
}

.data-table td[b-8pdy6430rd] {
    padding: 14px 16px;
    color: #1f2937;
}

.id-cell[b-8pdy6430rd] {
    font-weight: 600;
    color: #667eea;
    font-family: 'Monaco', 'Courier New', monospace;
}

.date-cell[b-8pdy6430rd] {
    color: #6b7280;
    font-size: 12px;
}

.email-cell[b-8pdy6430rd] {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
}

.comment-cell[b-8pdy6430rd] {
    color: #6b7280;
    line-height: 1.4;
    max-width: 400px;
    white-space: normal;
    word-break: break-word;
}

/* Badges */
.badge[b-8pdy6430rd] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.sex-badge[b-8pdy6430rd] {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
}

.status-badge[b-8pdy6430rd] {
    background: rgba(252, 165, 11, 0.1);
    color: #d97706;
}

.type-badge[b-8pdy6430rd] {
    background: rgba(79, 172, 254, 0.1);
    color: #2563eb;
}

.auth-badge[b-8pdy6430rd] {
    background: rgba(240, 147, 251, 0.1);
    color: #d946ef;
}

/* Empty State */
.empty-state[b-8pdy6430rd] {
    text-align: center;
    padding: 48px 32px;
    color: #9ca3af;
}

.empty-state i[b-8pdy6430rd] {
    font-size: 48px;
    color: #d1d5db;
    display: block;
    margin-bottom: 12px;
}

.empty-state p[b-8pdy6430rd] {
    font-size: 14px;
    margin: 0;
    color: #6b7280;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .stats-overview[b-8pdy6430rd] {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 16px;
    }

    .stat-card[b-8pdy6430rd] {
        padding: 18px;
        gap: 16px;
    }

    .stat-icon[b-8pdy6430rd] {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }

    .stat-value[b-8pdy6430rd] {
        font-size: 24px;
    }

    .filter-wrapper[b-8pdy6430rd] {
        gap: 16px;
    }

    .button-group[b-8pdy6430rd] {
        gap: 10px;
    }

    .btn-report[b-8pdy6430rd] {
        padding: 12px 10px;
        font-size: 12px;
        min-height: 90px;
    }

    .results-container[b-8pdy6430rd] {
        padding: 24px;
    }
}

@media (max-width: 768px) {
    .stats-header[b-8pdy6430rd] {
        padding: 28px 20px;
    }

    .page-title[b-8pdy6430rd] {
        font-size: 24px;
    }

    .page-subtitle[b-8pdy6430rd] {
        font-size: 13px;
    }

    .stats-overview[b-8pdy6430rd] {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 12px;
    }

    .stat-card[b-8pdy6430rd] {
        padding: 16px;
        gap: 12px;
    }

    .stat-icon[b-8pdy6430rd] {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .stat-content[b-8pdy6430rd] {
        min-width: 0;
    }

    .stat-label[b-8pdy6430rd] {
        font-size: 11px;
    }

    .stat-value[b-8pdy6430rd] {
        font-size: 20px;
    }

    .section-title[b-8pdy6430rd] {
        font-size: 17px;
        padding: 18px 20px;
    }

    .filter-section[b-8pdy6430rd] {
        padding: 16px 20px;
        background: #f9fafb;
    }

    .filter-wrapper[b-8pdy6430rd] {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .date-range-card[b-8pdy6430rd],
    .report-selector-card[b-8pdy6430rd] {
        padding: 16px;
    }

    .date-range-header[b-8pdy6430rd],
    .report-selector-header[b-8pdy6430rd] {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .button-group[b-8pdy6430rd] {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .btn-report[b-8pdy6430rd] {
        padding: 12px 10px;
        font-size: 11px;
        min-height: 85px;
    }

    .btn-report i[b-8pdy6430rd] {
        font-size: 18px;
    }

    .btn-sublabel[b-8pdy6430rd] {
        font-size: 9px;
    }

    .results-container[b-8pdy6430rd] {
        padding: 16px 20px;
    }

    .result-header[b-8pdy6430rd] {
        flex-wrap: wrap;
        gap: 12px;
    }

    .result-title[b-8pdy6430rd] {
        flex: 1 1 auto;
    }

    .result-count[b-8pdy6430rd] {
        font-size: 11px;
        padding: 5px 10px;
    }

    .data-table[b-8pdy6430rd] {
        font-size: 12px;
    }

    .data-table th[b-8pdy6430rd] {
        padding: 12px 12px;
        font-size: 10px;
    }

    .data-table td[b-8pdy6430rd] {
        padding: 10px 12px;
    }

    .comment-cell[b-8pdy6430rd] {
        max-width: 250px;
    }

    .empty-state[b-8pdy6430rd] {
        padding: 36px 20px;
    }

    .empty-state i[b-8pdy6430rd] {
        font-size: 40px;
        margin-bottom: 10px;
    }

    .empty-state p[b-8pdy6430rd] {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .stats-page[b-8pdy6430rd] {
        gap: 16px;
    }

    .stats-header[b-8pdy6430rd] {
        padding: 20px 16px;
        border-radius: 8px;
    }

    .page-title[b-8pdy6430rd] {
        font-size: 20px;
        gap: 8px;
    }

    .page-title i[b-8pdy6430rd] {
        font-size: 24px;
    }

    .page-subtitle[b-8pdy6430rd] {
        font-size: 12px;
    }

    .stats-overview[b-8pdy6430rd] {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .stat-card[b-8pdy6430rd] {
        padding: 14px;
        gap: 12px;
    }

    .stat-icon[b-8pdy6430rd] {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .stat-label[b-8pdy6430rd] {
        font-size: 10px;
    }

    .stat-value[b-8pdy6430rd] {
        font-size: 18px;
    }

    .stats-section[b-8pdy6430rd] {
        border-radius: 8px;
    }

    .section-title[b-8pdy6430rd] {
        font-size: 15px;
        padding: 16px;
        gap: 10px;
    }

    .section-title i[b-8pdy6430rd] {
        font-size: 18px;
    }

    .filter-section[b-8pdy6430rd] {
        padding: 14px 16px;
    }

    .filter-wrapper[b-8pdy6430rd] {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .date-range-card[b-8pdy6430rd],
    .report-selector-card[b-8pdy6430rd] {
        padding: 14px;
        border-radius: 10px;
    }

    .date-range-header[b-8pdy6430rd],
    .report-selector-header[b-8pdy6430rd] {
        font-size: 12px;
        margin-bottom: 10px;
        gap: 8px;
    }

    .date-range-header i[b-8pdy6430rd],
    .report-selector-header i[b-8pdy6430rd] {
        font-size: 14px;
    }

    .date-range-content[b-8pdy6430rd],
    .report-selector-content[b-8pdy6430rd] {
        gap: 10px;
    }

    .button-group[b-8pdy6430rd] {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .btn-report[b-8pdy6430rd] {
        padding: 10px 8px;
        font-size: 10px;
        min-height: 80px;
        border-radius: 8px;
    }

    .btn-report i[b-8pdy6430rd] {
        font-size: 16px;
    }

    .btn-sublabel[b-8pdy6430rd] {
        font-size: 8px;
    }

    .results-container[b-8pdy6430rd] {
        padding: 14px 16px;
    }

    .result-header[b-8pdy6430rd] {
        flex-wrap: wrap;
        gap: 10px;
    }

    .result-title[b-8pdy6430rd] {
        font-size: 14px;
        gap: 8px;
    }

    .result-title i[b-8pdy6430rd] {
        font-size: 16px;
    }

    .result-count[b-8pdy6430rd] {
        font-size: 10px;
        padding: 4px 8px;
    }

    .table-wrapper[b-8pdy6430rd] {
        border-radius: 8px;
        font-size: 11px;
    }

    .data-table[b-8pdy6430rd] {
        font-size: 11px;
    }

    .data-table th[b-8pdy6430rd] {
        padding: 10px 8px;
        font-size: 9px;
    }

    .data-table td[b-8pdy6430rd] {
        padding: 8px;
    }

    .badge[b-8pdy6430rd] {
        padding: 4px 8px;
        font-size: 9px;
    }

    .comment-cell[b-8pdy6430rd] {
        max-width: 150px;
        font-size: 11px;
    }

    .empty-state[b-8pdy6430rd] {
        padding: 28px 16px;
    }

    .empty-state i[b-8pdy6430rd] {
        font-size: 36px;
        margin-bottom: 8px;
    }

    .empty-state p[b-8pdy6430rd] {
        font-size: 12px;
    }
}

/* Print Styles */
@media print {
    .stats-page[b-8pdy6430rd] {
        gap: 12px;
    }

    .stats-header[b-8pdy6430rd] {
        box-shadow: none;
    }

    .stat-card[b-8pdy6430rd] {
        box-shadow: none;
        border: 1px solid #d1d5db;
    }

    .stats-section[b-8pdy6430rd] {
        box-shadow: none;
        border: 1px solid #d1d5db;
    }

    .filter-section[b-8pdy6430rd] {
        display: none;
    }

    .table-wrapper[b-8pdy6430rd] {
        box-shadow: none;
        border: 1px solid #d1d5db;
    }

    .btn-report[b-8pdy6430rd] {
        display: none;
    }
}
/* /DrawingDemo/DrawingHomePage.razor.rz.scp.css */
/* Drawing Page Container */
.drawing-page[b-f0w058ainr] {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Page Header */
.drawing-header[b-f0w058ainr] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.25);
}

.header-content[b-f0w058ainr] {
    max-width: 1200px;
    margin: 0 auto;
}

.page-title[b-f0w058ainr] {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.page-title i[b-f0w058ainr] {
    font-size: 36px;
}

.page-subtitle[b-f0w058ainr] {
    font-size: 15px;
    opacity: 0.95;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Drawing Section */
.drawing-section[b-f0w058ainr] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.section-title[b-f0w058ainr] {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    padding: 24px 32px;
    background: linear-gradient(90deg, #f3f4f6 0%, #ffffff 100%);
    border-bottom: 2px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title i[b-f0w058ainr] {
    font-size: 22px;
    color: #667eea;
}

/* Canvas Container */
.canvas-container[b-f0w058ainr] {
    padding: 32px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 20px;
}

/* Canvas Card */
.canvas-card[b-f0w058ainr] {
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.canvas-card:hover[b-f0w058ainr] {
    border-color: #dbeafe;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.15);
    background: white;
}

.canvas-header[b-f0w058ainr] {
    padding: 16px 20px;
    background: linear-gradient(90deg, rgba(102, 126, 234, 0.05) 0%, rgba(102, 126, 234, 0.02) 100%);
    border-bottom: 2px solid #e5e7eb;
}

.canvas-title[b-f0w058ainr] {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.canvas-title i[b-f0w058ainr] {
    font-size: 18px;
    color: #667eea;
}

/* Canvas Wrapper */
.canvas-wrapper[b-f0w058ainr] {
    padding: 20px;
}

.canvas-area[b-f0w058ainr] {
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 2px dashed #d1d5db;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
    cursor: crosshair;
}

.canvas-area:hover[b-f0w058ainr] {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.02);
}

.canvas-area:active[b-f0w058ainr] {
    border-color: #764ba2;
    background: rgba(118, 75, 162, 0.03);
}

/* Canvas Child Elements */
.canvas-area > *[b-f0w058ainr] {
    display: block;
    border-radius: 4px;
}

.canvas-hint[b-f0w058ainr] {
    font-size: 12px;
    color: #9ca3af;
    margin: 12px 0 0 0;
    text-align: center;
    font-style: italic;
    padding: 8px;
    background: rgba(229, 231, 235, 0.5);
    border-radius: 6px;
}

/* Info Box */
.info-box[b-f0w058ainr] {
    display: flex;
    gap: 12px;
    margin: 32px;
    margin-top: 24px;
    padding: 16px;
    background: rgba(59, 130, 246, 0.08);
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 10px;
    font-size: 13px;
    color: #1e40af;
}

.info-box i[b-f0w058ainr] {
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    color: #3b82f6;
}

.info-content[b-f0w058ainr] {
    flex: 1;
}

.info-content p[b-f0w058ainr] {
    margin: 0;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .canvas-container[b-f0w058ainr] {
        grid-template-columns: 1fr;
        padding: 24px;
    }
}

@media (max-width: 768px) {
    .drawing-header[b-f0w058ainr] {
        padding: 28px 20px;
    }

    .page-title[b-f0w058ainr] {
        font-size: 24px;
    }

    .page-subtitle[b-f0w058ainr] {
        font-size: 13px;
    }

    .section-title[b-f0w058ainr] {
        font-size: 17px;
        padding: 18px 20px;
    }

    .canvas-container[b-f0w058ainr] {
        padding: 20px;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .canvas-card[b-f0w058ainr] {
        border-radius: 10px;
    }

    .canvas-header[b-f0w058ainr] {
        padding: 14px 16px;
    }

    .canvas-title[b-f0w058ainr] {
        font-size: 14px;
        gap: 8px;
    }

    .canvas-title i[b-f0w058ainr] {
        font-size: 16px;
    }

    .canvas-wrapper[b-f0w058ainr] {
        padding: 16px;
    }

    .canvas-area[b-f0w058ainr] {
        padding: 16px;
    }

    .info-box[b-f0w058ainr] {
        margin: 20px;
        font-size: 12px;
        padding: 12px;
    }

    .info-box i[b-f0w058ainr] {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .drawing-page[b-f0w058ainr] {
        gap: 16px;
    }

    .drawing-header[b-f0w058ainr] {
        padding: 20px 16px;
        border-radius: 8px;
    }

    .page-title[b-f0w058ainr] {
        font-size: 20px;
        gap: 8px;
    }

    .page-title i[b-f0w058ainr] {
        font-size: 24px;
    }

    .page-subtitle[b-f0w058ainr] {
        font-size: 12px;
    }

    .section-title[b-f0w058ainr] {
        font-size: 15px;
        padding: 16px;
        gap: 8px;
    }

    .section-title i[b-f0w058ainr] {
        font-size: 18px;
    }

    .canvas-container[b-f0w058ainr] {
        padding: 16px;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .canvas-card[b-f0w058ainr] {
        border-radius: 8px;
    }

    .canvas-header[b-f0w058ainr] {
        padding: 12px 14px;
    }

    .canvas-title[b-f0w058ainr] {
        font-size: 13px;
        gap: 6px;
    }

    .canvas-title i[b-f0w058ainr] {
        font-size: 14px;
    }

    .canvas-wrapper[b-f0w058ainr] {
        padding: 12px;
    }

    .canvas-area[b-f0w058ainr] {
        padding: 12px;
        border-radius: 6px;
    }

    .canvas-hint[b-f0w058ainr] {
        font-size: 11px;
        margin: 10px 0 0 0;
        padding: 6px;
    }

    .info-box[b-f0w058ainr] {
        margin: 16px;
        font-size: 11px;
        padding: 10px;
        border-radius: 8px;
    }

    .info-box i[b-f0w058ainr] {
        font-size: 13px;
    }
}

/* Print Styles */
@media print {
    .drawing-page[b-f0w058ainr] {
        gap: 12px;
    }

    .drawing-header[b-f0w058ainr] {
        box-shadow: none;
    }

    .canvas-area[b-f0w058ainr] {
        border: 1px solid #d1d5db;
    }

    .info-box[b-f0w058ainr] {
        display: none;
    }
}

/* Canvas scrollbar customization for scrollable containers */
.canvas-area[b-f0w058ainr]::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.canvas-area[b-f0w058ainr]::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 4px;
}

.canvas-area[b-f0w058ainr]::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.canvas-area[b-f0w058ainr]::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}
/* /DrawingDemo/DrawingTooPage.razor.rz.scp.css */
/* Drawing Page Container */
.drawing-page[b-5tqfjtr3wd] {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Page Header */
.drawing-header[b-5tqfjtr3wd] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.25);
}

.header-content[b-5tqfjtr3wd] {
    max-width: 1200px;
    margin: 0 auto;
}

.page-title[b-5tqfjtr3wd] {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.page-title i[b-5tqfjtr3wd] {
    font-size: 36px;
}

.page-subtitle[b-5tqfjtr3wd] {
    font-size: 15px;
    opacity: 0.95;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Drawing Section */
.drawing-section[b-5tqfjtr3wd] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.section-title[b-5tqfjtr3wd] {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    padding: 24px 32px;
    background: linear-gradient(90deg, #f3f4f6 0%, #ffffff 100%);
    border-bottom: 2px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title i[b-5tqfjtr3wd] {
    font-size: 22px;
    color: #667eea;
}

/* Drawing Container */
.drawing-container[b-5tqfjtr3wd] {
    padding: 32px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
}

/* Drawing Card */
.drawing-card[b-5tqfjtr3wd] {
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.drawing-card:hover[b-5tqfjtr3wd] {
    border-color: #dbeafe;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.15);
    background: white;
    transform: translateY(-2px);
}

.card-header[b-5tqfjtr3wd] {
    padding: 16px 20px;
    background: linear-gradient(90deg, rgba(102, 126, 234, 0.05) 0%, rgba(102, 126, 234, 0.02) 100%);
    border-bottom: 2px solid #e5e7eb;
}

.card-title[b-5tqfjtr3wd] {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-title i[b-5tqfjtr3wd] {
    font-size: 18px;
    color: #667eea;
}

/* Card Body */
.card-body[b-5tqfjtr3wd] {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.card-body.image-body[b-5tqfjtr3wd] {
    justify-content: center;
    align-items: center;
    min-height: 300px;
    background: white;
}

/* Canvas Area */
.canvas-area[b-5tqfjtr3wd] {
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 2px dashed #d1d5db;
    border-radius: 8px;
    padding: 16px;
    transition: all 0.3s ease;
    cursor: crosshair;
}

.canvas-area:hover[b-5tqfjtr3wd] {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.02);
}

.canvas-area:active[b-5tqfjtr3wd] {
    border-color: #764ba2;
    background: rgba(118, 75, 162, 0.03);
}

.canvas-area > *[b-5tqfjtr3wd] {
    display: block;
    border-radius: 4px;
}

/* Card Hint */
.card-hint[b-5tqfjtr3wd] {
    font-size: 12px;
    color: #9ca3af;
    margin: 8px 0 0 0;
    text-align: center;
    font-style: italic;
    padding: 8px;
    background: rgba(229, 231, 235, 0.5);
    border-radius: 6px;
}

/* Generated Image */
.generated-image[b-5tqfjtr3wd] {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.image-placeholder[b-5tqfjtr3wd] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #d1d5db;
    text-align: center;
}

.image-placeholder i[b-5tqfjtr3wd] {
    font-size: 48px;
    color: #e5e7eb;
}

.image-placeholder p[b-5tqfjtr3wd] {
    font-size: 14px;
    color: #9ca3af;
    margin: 0;
}

/* Info Box */
.info-box[b-5tqfjtr3wd] {
    display: flex;
    gap: 12px;
    margin: 32px;
    margin-top: 24px;
    padding: 16px;
    background: rgba(251, 191, 36, 0.08);
    border: 2px solid rgba(251, 191, 36, 0.2);
    border-radius: 10px;
    font-size: 13px;
    color: #92400e;
}

.info-box i[b-5tqfjtr3wd] {
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    color: #f59e0b;
}

.info-content[b-5tqfjtr3wd] {
    flex: 1;
}

.info-content p[b-5tqfjtr3wd] {
    margin: 0;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .drawing-container[b-5tqfjtr3wd] {
        grid-template-columns: 1fr;
        padding: 24px;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .drawing-header[b-5tqfjtr3wd] {
        padding: 28px 20px;
    }

    .page-title[b-5tqfjtr3wd] {
        font-size: 24px;
    }

    .page-subtitle[b-5tqfjtr3wd] {
        font-size: 13px;
    }

    .section-title[b-5tqfjtr3wd] {
        font-size: 17px;
        padding: 18px 20px;
    }

    .drawing-container[b-5tqfjtr3wd] {
        padding: 20px;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .drawing-card[b-5tqfjtr3wd] {
        border-radius: 10px;
    }

    .card-header[b-5tqfjtr3wd] {
        padding: 14px 16px;
    }

    .card-title[b-5tqfjtr3wd] {
        font-size: 14px;
        gap: 8px;
    }

    .card-title i[b-5tqfjtr3wd] {
        font-size: 16px;
    }

    .card-body[b-5tqfjtr3wd] {
        padding: 16px;
        gap: 10px;
    }

    .card-body.image-body[b-5tqfjtr3wd] {
        min-height: 250px;
    }

    .canvas-area[b-5tqfjtr3wd] {
        padding: 12px;
        border-radius: 6px;
    }

    .generated-image[b-5tqfjtr3wd] {
        max-height: 300px;
    }

    .card-hint[b-5tqfjtr3wd] {
        font-size: 11px;
        padding: 6px;
        margin: 6px 0 0 0;
    }

    .info-box[b-5tqfjtr3wd] {
        margin: 20px;
        font-size: 12px;
        padding: 12px;
    }

    .info-box i[b-5tqfjtr3wd] {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .drawing-page[b-5tqfjtr3wd] {
        gap: 16px;
    }

    .drawing-header[b-5tqfjtr3wd] {
        padding: 20px 16px;
        border-radius: 8px;
    }

    .page-title[b-5tqfjtr3wd] {
        font-size: 20px;
        gap: 8px;
    }

    .page-title i[b-5tqfjtr3wd] {
        font-size: 24px;
    }

    .page-subtitle[b-5tqfjtr3wd] {
        font-size: 12px;
    }

    .section-title[b-5tqfjtr3wd] {
        font-size: 15px;
        padding: 16px;
        gap: 8px;
    }

    .section-title i[b-5tqfjtr3wd] {
        font-size: 18px;
    }

    .drawing-container[b-5tqfjtr3wd] {
        padding: 16px;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .drawing-card[b-5tqfjtr3wd] {
        border-radius: 8px;
    }

    .card-header[b-5tqfjtr3wd] {
        padding: 12px 14px;
    }

    .card-title[b-5tqfjtr3wd] {
        font-size: 13px;
        gap: 6px;
    }

    .card-title i[b-5tqfjtr3wd] {
        font-size: 14px;
    }

    .card-body[b-5tqfjtr3wd] {
        padding: 12px;
        gap: 8px;
    }

    .card-body.image-body[b-5tqfjtr3wd] {
        min-height: 200px;
    }

    .canvas-area[b-5tqfjtr3wd] {
        padding: 10px;
        border-radius: 6px;
    }

    .generated-image[b-5tqfjtr3wd] {
        max-height: 200px;
    }

    .image-placeholder[b-5tqfjtr3wd] {
        gap: 8px;
    }

    .image-placeholder i[b-5tqfjtr3wd] {
        font-size: 36px;
    }

    .image-placeholder p[b-5tqfjtr3wd] {
        font-size: 12px;
    }

    .card-hint[b-5tqfjtr3wd] {
        font-size: 10px;
        padding: 4px;
        margin: 4px 0 0 0;
    }

    .info-box[b-5tqfjtr3wd] {
        margin: 16px;
        font-size: 11px;
        padding: 10px;
        border-radius: 8px;
    }

    .info-box i[b-5tqfjtr3wd] {
        font-size: 12px;
    }
}

/* Print Styles */
@media print {
    .drawing-page[b-5tqfjtr3wd] {
        gap: 12px;
    }

    .drawing-header[b-5tqfjtr3wd] {
        box-shadow: none;
    }

    .canvas-area[b-5tqfjtr3wd] {
        border: 1px solid #d1d5db;
    }

    .info-box[b-5tqfjtr3wd] {
        display: none;
    }
}

/* Canvas scrollbar customization */
.canvas-area[b-5tqfjtr3wd]::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.canvas-area[b-5tqfjtr3wd]::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 4px;
}

.canvas-area[b-5tqfjtr3wd]::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.canvas-area[b-5tqfjtr3wd]::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}
/* /HelpPages/SearchHomePageHelp.razor.rz.scp.css */
/* Help Modal Overlay */
.help-modal-overlay[b-spq5e7prld] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

.help-modal-overlay.visible[b-spq5e7prld] {
    opacity: 1;
    visibility: visible;
}

.help-modal-overlay.hidden[b-spq5e7prld] {
    opacity: 0;
    visibility: hidden;
}

/* Modal Container */
.help-modal-container[b-spq5e7prld] {
    width: 100%;
    max-width: 650px;
    max-height: 90vh;
    overflow-y: auto;
}

/* Modal Box */
.help-modal[b-spq5e7prld] {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: modalSlideIn-b-spq5e7prld 0.3s ease;
}

@keyframes modalSlideIn-b-spq5e7prld {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Modal Header */
.help-modal-header[b-spq5e7prld] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.help-modal-title[b-spq5e7prld] {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.5px;
}

.help-modal-title i[b-spq5e7prld] {
    font-size: 28px;
}

.help-modal-close[b-spq5e7prld] {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.help-modal-close:hover[b-spq5e7prld] {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.help-modal-close:active[b-spq5e7prld] {
    transform: rotate(90deg) scale(0.95);
}

/* Modal Body */
.help-modal-body[b-spq5e7prld] {
    padding: 30px;
    overflow-y: auto;
    max-height: calc(90vh - 200px);
}

/* Help Section */
.help-section[b-spq5e7prld] {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e5e7eb;
}

.help-section:last-child[b-spq5e7prld] {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.help-section-title[b-spq5e7prld] {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.help-section-title i[b-spq5e7prld] {
    font-size: 18px;
    color: #667eea;
    min-width: 20px;
}

.help-text[b-spq5e7prld] {
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
    margin: 0;
    letter-spacing: 0.2px;
}

.help-text code[b-spq5e7prld] {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}

.help-text .highlight[b-spq5e7prld] {
    color: #667eea;
    font-weight: 600;
    background: rgba(102, 126, 234, 0.05);
    padding: 2px 6px;
    border-radius: 4px;
}

/* Modal Footer */
.help-modal-footer[b-spq5e7prld] {
    padding: 20px 30px;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.help-btn-primary[b-spq5e7prld] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.help-btn-primary:hover[b-spq5e7prld] {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(102, 126, 234, 0.4);
}

.help-btn-primary:active[b-spq5e7prld] {
    transform: translateY(0);
}

.help-btn-primary i[b-spq5e7prld] {
    font-size: 16px;
}

/* Auto-close Progress Bar */
.auto-close-bar[b-spq5e7prld] {
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transition: width 0.05s linear;
    width: 100%;
}

/* Scrollbar Styling */
.help-modal-container[b-spq5e7prld]::-webkit-scrollbar {
    width: 8px;
}

.help-modal-container[b-spq5e7prld]::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.help-modal-container[b-spq5e7prld]::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.help-modal-container[b-spq5e7prld]::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.help-modal-body[b-spq5e7prld]::-webkit-scrollbar {
    width: 6px;
}

.help-modal-body[b-spq5e7prld]::-webkit-scrollbar-track {
    background: transparent;
}

.help-modal-body[b-spq5e7prld]::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 3px;
}

.help-modal-body[b-spq5e7prld]::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .help-modal-overlay[b-spq5e7prld] {
        padding: 15px;
    }

    .help-modal-container[b-spq5e7prld] {
        max-width: 100%;
        max-height: 95vh;
    }

    .help-modal-header[b-spq5e7prld] {
        padding: 20px;
    }

    .help-modal-title[b-spq5e7prld] {
        font-size: 20px;
    }

    .help-modal-close[b-spq5e7prld] {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .help-modal-body[b-spq5e7prld] {
        padding: 20px;
        max-height: calc(95vh - 150px);
    }

    .help-section[b-spq5e7prld] {
        margin-bottom: 18px;
        padding-bottom: 18px;
    }

    .help-section-title[b-spq5e7prld] {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .help-text[b-spq5e7prld] {
        font-size: 13px;
    }

    .help-modal-footer[b-spq5e7prld] {
        padding: 15px 20px;
    }

    .help-btn-primary[b-spq5e7prld] {
        padding: 8px 16px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .help-modal-overlay[b-spq5e7prld] {
        padding: 10px;
    }

    .help-modal[b-spq5e7prld] {
        border-radius: 12px;
    }

    .help-modal-header[b-spq5e7prld] {
        padding: 16px;
        flex-wrap: wrap;
    }

    .help-modal-title[b-spq5e7prld] {
        font-size: 18px;
        width: 100%;
    }

    .help-modal-close[b-spq5e7prld] {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .help-modal-body[b-spq5e7prld] {
        padding: 16px;
        max-height: calc(95vh - 130px);
    }

    .help-section[b-spq5e7prld] {
        margin-bottom: 16px;
        padding-bottom: 16px;
    }

    .help-section-title[b-spq5e7prld] {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .help-text[b-spq5e7prld] {
        font-size: 12px;
        line-height: 1.5;
    }

    .help-modal-footer[b-spq5e7prld] {
        padding: 12px 16px;
        justify-content: center;
    }

    .help-btn-primary[b-spq5e7prld] {
        padding: 8px 16px;
        font-size: 12px;
        width: 100%;
    }
}

/* Animations */
@keyframes fadeIn-b-spq5e7prld {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.help-section[b-spq5e7prld] {
    animation: fadeIn-b-spq5e7prld 0.3s ease;
}
/* /LoggingAndExceptions/ExceptionListPage.razor.rz.scp.css */
/* Exception Page Container */
.exception-page[b-leukh9g9nx] {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Page Header */
.exception-header[b-leukh9g9nx] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.25);
}

.header-content[b-leukh9g9nx] {
    max-width: 1400px;
    margin: 0 auto;
}

.page-title[b-leukh9g9nx] {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.page-title i[b-leukh9g9nx] {
    font-size: 36px;
}

.page-subtitle[b-leukh9g9nx] {
    font-size: 15px;
    opacity: 0.95;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Exception Section */
.exception-section[b-leukh9g9nx] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.section-header[b-leukh9g9nx] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    background: linear-gradient(90deg, #f3f4f6 0%, #ffffff 100%);
    border-bottom: 2px solid #e5e7eb;
}

.section-title[b-leukh9g9nx] {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title i[b-leukh9g9nx] {
    font-size: 22px;
    color: #667eea;
}

.exception-stats[b-leukh9g9nx] {
    display: flex;
    gap: 12px;
    align-items: center;
}

.stat-badge[b-leukh9g9nx] {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid #dbeafe;
    color: #667eea;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

/* Exceptions Container */
.exceptions-container[b-leukh9g9nx] {
    padding: 32px;
}

.exceptions-table-wrapper[b-leukh9g9nx] {
    overflow-x: auto;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.exceptions-table[b-leukh9g9nx] {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.exceptions-table thead[b-leukh9g9nx] {
    background: linear-gradient(90deg, #f9fafb 0%, #f3f4f6 100%);
    position: sticky;
    top: 0;
    z-index: 10;
}

.exceptions-table th[b-leukh9g9nx] {
    padding: 14px 16px;
    text-align: left;
    font-weight: 700;
    color: #1f2937;
    border-bottom: 2px solid #e5e7eb;
    white-space: nowrap;
}

.exceptions-table tbody[b-leukh9g9nx] {
    max-height: 600px;
}

.exception-row[b-leukh9g9nx] {
    border-bottom: 1px solid #f3f4f6;
    transition: background-color 0.2s ease;
}

.exception-row:hover[b-leukh9g9nx] {
    background-color: rgba(102, 126, 234, 0.03);
}

.exceptions-table td[b-leukh9g9nx] {
    padding: 12px 16px;
    color: #6b7280;
}

.col-id[b-leukh9g9nx] {
    width: 60px;
}

.col-user[b-leukh9g9nx] {
    width: 80px;
}

.col-date[b-leukh9g9nx] {
    width: 110px;
}

.col-class[b-leukh9g9nx] {
    width: 120px;
}

.col-method[b-leukh9g9nx] {
    width: 120px;
}

.col-message[b-leukh9g9nx] {
    flex: 1;
    min-width: 250px;
}

/* Badge Styles */
.badge-id[b-leukh9g9nx] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
}

.date-badge[b-leukh9g9nx] {
    display: inline-block;
    padding: 4px 10px;
    background: #dbeafe;
    color: #0369a1;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

/* Code Styling */
.exceptions-table code[b-leukh9g9nx] {
    background: #f3f4f6;
    color: #764ba2;
    padding: 4px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    font-weight: 500;
}

.message-text[b-leukh9g9nx] {
    color: #1f2937;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}

/* Empty State */
.empty-state[b-leukh9g9nx] {
    text-align: center;
    padding: 48px 32px;
    color: #9ca3af;
}

.empty-state i[b-leukh9g9nx] {
    font-size: 48px;
    color: #d1d5db;
    display: block;
    margin-bottom: 12px;
}

.empty-state p[b-leukh9g9nx] {
    font-size: 16px;
    margin: 0 0 8px 0;
    color: #6b7280;
    font-weight: 600;
}

.empty-hint[b-leukh9g9nx] {
    font-size: 13px;
    color: #9ca3af;
    display: block;
}

/* Info Box */
.info-box[b-leukh9g9nx] {
    display: flex;
    gap: 12px;
    margin: 24px 32px 0 32px;
    padding: 16px;
    background: rgba(59, 130, 246, 0.08);
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 10px;
    font-size: 13px;
    color: #1e40af;
}

.info-box i[b-leukh9g9nx] {
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    color: #3b82f6;
}

.info-content[b-leukh9g9nx] {
    flex: 1;
}

.info-content p[b-leukh9g9nx] {
    margin: 0;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .exceptions-table[b-leukh9g9nx] {
        font-size: 12px;
    }

    .exceptions-table th[b-leukh9g9nx],
    .exceptions-table td[b-leukh9g9nx] {
        padding: 12px 14px;
    }

    .col-id[b-leukh9g9nx] {
        width: 50px;
    }

    .col-user[b-leukh9g9nx] {
        width: 70px;
    }

    .col-date[b-leukh9g9nx] {
        width: 100px;
    }

    .col-class[b-leukh9g9nx] {
        width: 100px;
    }

    .col-method[b-leukh9g9nx] {
        width: 100px;
    }

    .col-message[b-leukh9g9nx] {
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .exception-header[b-leukh9g9nx] {
        padding: 28px 20px;
    }

    .page-title[b-leukh9g9nx] {
        font-size: 24px;
    }

    .page-subtitle[b-leukh9g9nx] {
        font-size: 13px;
    }

    .section-header[b-leukh9g9nx] {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 18px 20px;
    }

    .section-title[b-leukh9g9nx] {
        font-size: 17px;
    }

    .exceptions-container[b-leukh9g9nx] {
        padding: 20px;
    }

    .exceptions-table[b-leukh9g9nx] {
        font-size: 11px;
    }

    .exceptions-table th[b-leukh9g9nx],
    .exceptions-table td[b-leukh9g9nx] {
        padding: 10px 12px;
    }

    .col-id[b-leukh9g9nx] {
        width: 45px;
    }

    .col-user[b-leukh9g9nx] {
        width: 60px;
    }

    .col-date[b-leukh9g9nx] {
        width: 85px;
    }

    .col-class[b-leukh9g9nx] {
        width: 80px;
    }

    .col-method[b-leukh9g9nx] {
        width: 80px;
    }

    .col-message[b-leukh9g9nx] {
        min-width: 150px;
    }

    .badge-id[b-leukh9g9nx] {
        width: 28px;
        height: 28px;
        font-size: 10px;
    }

    .date-badge[b-leukh9g9nx] {
        padding: 3px 8px;
        font-size: 10px;
    }

    .exceptions-table code[b-leukh9g9nx] {
        padding: 3px 6px;
        font-size: 10px;
    }

    .info-box[b-leukh9g9nx] {
        margin: 16px 20px 0 20px;
        padding: 12px;
        font-size: 12px;
    }

    .empty-state[b-leukh9g9nx] {
        padding: 36px 20px;
    }

    .empty-state i[b-leukh9g9nx] {
        font-size: 40px;
        margin-bottom: 10px;
    }

    .empty-state p[b-leukh9g9nx] {
        font-size: 14px;
    }

    .empty-hint[b-leukh9g9nx] {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .exception-page[b-leukh9g9nx] {
        gap: 16px;
    }

    .exception-header[b-leukh9g9nx] {
        padding: 20px 16px;
        border-radius: 8px;
    }

    .page-title[b-leukh9g9nx] {
        font-size: 20px;
        gap: 8px;
    }

    .page-title i[b-leukh9g9nx] {
        font-size: 24px;
    }

    .page-subtitle[b-leukh9g9nx] {
        font-size: 12px;
    }

    .exception-section[b-leukh9g9nx] {
        border-radius: 8px;
    }

    .section-header[b-leukh9g9nx] {
        padding: 14px 16px;
        gap: 8px;
    }

    .section-title[b-leukh9g9nx] {
        font-size: 15px;
        gap: 8px;
    }

    .section-title i[b-leukh9g9nx] {
        font-size: 18px;
    }

    .stat-badge[b-leukh9g9nx] {
        font-size: 11px;
        padding: 4px 10px;
    }

    .exceptions-container[b-leukh9g9nx] {
        padding: 16px;
    }

    .exceptions-table[b-leukh9g9nx] {
        font-size: 10px;
    }

    .exceptions-table th[b-leukh9g9nx],
    .exceptions-table td[b-leukh9g9nx] {
        padding: 8px 10px;
    }

    .col-id[b-leukh9g9nx] {
        width: 40px;
    }

    .col-user[b-leukh9g9nx] {
        width: 50px;
    }

    .col-date[b-leukh9g9nx] {
        width: 70px;
    }

    .col-class[b-leukh9g9nx] {
        width: 70px;
    }

    .col-method[b-leukh9g9nx] {
        width: 70px;
    }

    .col-message[b-leukh9g9nx] {
        min-width: 120px;
    }

    .badge-id[b-leukh9g9nx] {
        width: 24px;
        height: 24px;
        font-size: 9px;
    }

    .date-badge[b-leukh9g9nx] {
        padding: 2px 6px;
        font-size: 9px;
    }

    .exceptions-table code[b-leukh9g9nx] {
        padding: 2px 4px;
        font-size: 9px;
    }

    .info-box[b-leukh9g9nx] {
        margin: 12px 16px 0 16px;
        padding: 10px;
        font-size: 11px;
        border-radius: 8px;
    }

    .info-box i[b-leukh9g9nx] {
        font-size: 13px;
    }

    .empty-state[b-leukh9g9nx] {
        padding: 28px 16px;
    }

    .empty-state i[b-leukh9g9nx] {
        font-size: 36px;
        margin-bottom: 8px;
    }

    .empty-state p[b-leukh9g9nx] {
        font-size: 13px;
    }

    .empty-hint[b-leukh9g9nx] {
        font-size: 11px;
    }
}

/* Print Styles */
@media print {
    .exception-page[b-leukh9g9nx] {
        gap: 12px;
    }

    .exception-header[b-leukh9g9nx] {
        box-shadow: none;
    }

    .exception-section[b-leukh9g9nx] {
        box-shadow: none;
        border: 1px solid #d1d5db;
    }

    .info-box[b-leukh9g9nx] {
        display: none;
    }

    .exceptions-table[b-leukh9g9nx] {
        margin-bottom: 12px;
    }
}

/* Custom Scrollbar */
.exceptions-table-wrapper[b-leukh9g9nx]::-webkit-scrollbar {
    height: 8px;
}

.exceptions-table-wrapper[b-leukh9g9nx]::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 4px;
}

.exceptions-table-wrapper[b-leukh9g9nx]::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.exceptions-table-wrapper[b-leukh9g9nx]::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}
/* /Pages/AddPerson.razor.rz.scp.css */
/* Add Person Page Container */
.add-person-page[b-195j0082tl] {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
    background-color: #f8f9fa;
    min-height: 100vh;
}

/* Page Header */
.add-person-header[b-195j0082tl] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 50px 40px;
    margin-bottom: 40px;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.header-content[b-195j0082tl] {
    max-width: 1000px;
    margin: 0 auto;
}

.page-title[b-195j0082tl] {
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    gap: 16px;
    letter-spacing: -0.5px;
}

.page-title i[b-195j0082tl] {
    font-size: 48px;
    color: rgba(255, 255, 255, 0.9);
}

.page-subtitle[b-195j0082tl] {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-weight: 400;
}

/* Content Container */
.add-person-container[b-195j0082tl] {
    padding: 0 30px 40px 30px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Authorization Warning */
.auth-warning[b-195j0082tl] {
    display: flex;
    gap: 16px;
    padding: 18px 20px;
    background: #fef3c7;
    border: 2px solid #fcd34d;
    border-radius: 12px;
    margin-bottom: 30px;
    animation: slideIn-b-195j0082tl 0.3s ease;
}

@keyframes slideIn-b-195j0082tl {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.warning-icon[b-195j0082tl] {
    font-size: 24px;
    color: #d97706;
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    margin-top: 2px;
}

.warning-content[b-195j0082tl] {
    flex: 1;
}

.warning-title[b-195j0082tl] {
    font-size: 16px;
    font-weight: 700;
    color: #92400e;
    margin: 0 0 6px 0;
}

.warning-text[b-195j0082tl] {
    font-size: 14px;
    color: #b45309;
    margin: 0;
    line-height: 1.5;
}

/* Form Section */
.form-section[b-195j0082tl] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 24px;
}

.section-title[b-195j0082tl] {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    padding: 24px 28px;
    background: linear-gradient(90deg, #f3f4f6 0%, #ffffff 100%);
    border-bottom: 2px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title i[b-195j0082tl] {
    font-size: 24px;
    color: #667eea;
}

.form-content[b-195j0082tl] {
    padding: 28px;
}

/* Button Group */
.button-group[b-195j0082tl] {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.btn-primary[b-195j0082tl] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 180px;
}

.btn-primary:hover[b-195j0082tl] {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(102, 126, 234, 0.4);
}

.btn-primary:active[b-195j0082tl] {
    transform: translateY(0);
}

.btn-primary i[b-195j0082tl] {
    font-size: 18px;
}

/* Status Messages */
.status-message[b-195j0082tl] {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 18px;
    border-radius: 12px;
    margin-top: 20px;
    animation: slideIn-b-195j0082tl 0.3s ease;
}

.status-message.success[b-195j0082tl] {
    background: #dcfce7;
    border: 2px solid #86efac;
}

.status-message.error[b-195j0082tl] {
    background: #fee2e2;
    border: 2px solid #fecaca;
}

.message-icon[b-195j0082tl] {
    font-size: 22px;
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    margin-top: 2px;
}

.status-message.success .message-icon[b-195j0082tl] {
    color: #15803d;
}

.status-message.error .message-icon[b-195j0082tl] {
    color: #dc2626;
}

.message-content[b-195j0082tl] {
    flex: 1;
}

.message-text[b-195j0082tl] {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    line-height: 1.5;
}

.status-message.success .message-text[b-195j0082tl] {
    color: #166534;
}

.status-message.error .message-text[b-195j0082tl] {
    color: #991b1b;
}

.message-close[b-195j0082tl] {
    background: none;
    border: none;
    color: inherit;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    transition: all 0.2s ease;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.message-close:hover[b-195j0082tl] {
    opacity: 0.7;
    transform: scale(1.1);
}

.status-message.success .message-close[b-195j0082tl] {
    color: #15803d;
}

.status-message.error .message-close[b-195j0082tl] {
    color: #dc2626;
}

/* Responsive Design */
@media (max-width: 768px) {
    .add-person-page[b-195j0082tl] {
        padding: 0 15px;
    }

    .add-person-header[b-195j0082tl] {
        padding: 35px 25px;
        margin-bottom: 25px;
        border-radius: 0 0 12px 12px;
    }

    .page-title[b-195j0082tl] {
        font-size: 32px;
        gap: 12px;
    }

    .page-title i[b-195j0082tl] {
        font-size: 36px;
    }

    .page-subtitle[b-195j0082tl] {
        font-size: 14px;
    }

    .add-person-container[b-195j0082tl] {
        padding: 0 20px 30px 20px;
    }

    .auth-warning[b-195j0082tl] {
        padding: 16px 16px;
        margin-bottom: 20px;
    }

    .warning-title[b-195j0082tl] {
        font-size: 15px;
    }

    .warning-text[b-195j0082tl] {
        font-size: 13px;
    }

    .form-section[b-195j0082tl] {
        margin-bottom: 20px;
    }

    .section-title[b-195j0082tl] {
        padding: 18px 20px;
        font-size: 18px;
    }

    .form-content[b-195j0082tl] {
        padding: 20px;
    }

    .button-group[b-195j0082tl] {
        margin-bottom: 16px;
    }

    .btn-primary[b-195j0082tl] {
        padding: 11px 24px;
        font-size: 14px;
        min-width: 160px;
    }

    .status-message[b-195j0082tl] {
        padding: 14px 16px;
        gap: 12px;
    }

    .message-text[b-195j0082tl] {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .add-person-page[b-195j0082tl] {
        padding: 0;
    }

    .add-person-header[b-195j0082tl] {
        padding: 25px 20px;
        margin-bottom: 20px;
        border-radius: 0;
    }

    .page-title[b-195j0082tl] {
        font-size: 26px;
        gap: 10px;
        margin-bottom: 8px;
    }

    .page-title i[b-195j0082tl] {
        font-size: 28px;
    }

    .page-subtitle[b-195j0082tl] {
        font-size: 13px;
    }

    .add-person-container[b-195j0082tl] {
        padding: 0 16px 20px 16px;
    }

    .auth-warning[b-195j0082tl] {
        padding: 14px 12px;
        margin-bottom: 16px;
        gap: 12px;
    }

    .warning-icon[b-195j0082tl] {
        font-size: 20px;
    }

    .warning-title[b-195j0082tl] {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .warning-text[b-195j0082tl] {
        font-size: 12px;
    }

    .form-section[b-195j0082tl] {
        border-radius: 8px;
        margin-bottom: 16px;
    }

    .section-title[b-195j0082tl] {
        padding: 16px 16px;
        font-size: 16px;
    }

    .form-content[b-195j0082tl] {
        padding: 16px;
    }

    .button-group[b-195j0082tl] {
        flex-direction: column;
        margin-bottom: 12px;
    }

    .btn-primary[b-195j0082tl] {
        width: 100%;
        padding: 11px 16px;
        font-size: 13px;
        min-width: auto;
    }

    .status-message[b-195j0082tl] {
        padding: 12px 14px;
        gap: 10px;
        margin-top: 14px;
        border-radius: 8px;
    }

    .message-icon[b-195j0082tl] {
        font-size: 18px;
    }

    .message-text[b-195j0082tl] {
        font-size: 12px;
    }

    .message-close[b-195j0082tl] {
        font-size: 16px;
    }
}

/* Print Styles */
@media print {
    .add-person-header[b-195j0082tl] {
        background: none;
        border: 2px solid #667eea;
        color: #1f2937;
    }

    .page-title[b-195j0082tl],
    .page-subtitle[b-195j0082tl] {
        color: #1f2937;
    }

    .btn-primary[b-195j0082tl] {
        display: none;
    }

    .status-message[b-195j0082tl] {
        border: 2px solid #d1d5db;
    }
}
/* /Pages/AliasComponent.razor.rz.scp.css */
/* Alias Component Container */
.alias-component[b-cy8l0z8bma] {
    display: flex;
    flex-direction: column;
}

/* Alias Section */
.alias-section[b-cy8l0z8bma] {
    background: #f9fafb;
    border-radius: 10px;
    padding: 16px;
    border: 1px solid #e5e7eb;
}

/* Section Header */
.alias-header[b-cy8l0z8bma] {
    font-size: 15px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
}

.alias-header i[b-cy8l0z8bma] {
    font-size: 16px;
    color: #667eea;
}

/* Alias List */
.alias-list[b-cy8l0z8bma] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

/* Alias Item */
.alias-item[b-cy8l0z8bma] {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.alias-item:hover[b-cy8l0z8bma] {
    border-color: #dbeafe;
    background: #f0f9ff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.alias-item.editable[b-cy8l0z8bma] {
    flex-wrap: wrap;
}

.alias-item.add-new[b-cy8l0z8bma] {
    background: rgba(102, 126, 234, 0.03);
    border: 2px dashed #dbeafe;
}

/* Alias Names (Read-only display) */
.alias-names[b-cy8l0z8bma] {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    flex: 1;
}

.alias-name-badge[b-cy8l0z8bma] {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 6px;
    font-size: 13px;
}

.alias-name-label[b-cy8l0z8bma] {
    font-weight: 700;
    color: #667eea;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.3px;
}

.alias-name-value[b-cy8l0z8bma] {
    color: #1f2937;
    font-weight: 500;
}

/* Alias Inputs (Editable) */
.alias-inputs[b-cy8l0z8bma] {
    display: flex;
    gap: 12px;
    flex: 1;
    min-width: 250px;
}

.alias-input-group[b-cy8l0z8bma] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.alias-input-label[b-cy8l0z8bma] {
    font-size: 11px;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.alias-input[b-cy8l0z8bma] {
    padding: 8px 10px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 13px;
    font-family: inherit;
    transition: all 0.2s ease;
    background: white;
    color: #1f2937;
    min-height: 36px;
}

.alias-input[b-cy8l0z8bma]::placeholder {
    color: #9ca3af;
    font-style: italic;
}

.alias-input:focus[b-cy8l0z8bma] {
    outline: none;
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.02);
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.1);
}

.alias-input:hover:not(:focus)[b-cy8l0z8bma] {
    border-color: #d1d5db;
}

/* Buttons */
.btn-delete[b-cy8l0z8bma],
.btn-add[b-cy8l0z8bma] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 12px;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-delete[b-cy8l0z8bma] {
    background: #fee2e2;
    color: #dc2626;
}

.btn-delete:hover[b-cy8l0z8bma] {
    background: #fecaca;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(220, 38, 38, 0.2);
}

.btn-delete:active[b-cy8l0z8bma] {
    transform: translateY(0);
}

.btn-delete i[b-cy8l0z8bma] {
    font-size: 12px;
}

.btn-add[b-cy8l0z8bma] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-add:hover[b-cy8l0z8bma] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.btn-add:active[b-cy8l0z8bma] {
    transform: translateY(0);
}

.btn-add i[b-cy8l0z8bma] {
    font-size: 14px;
}

/* Empty State */
.alias-empty-state[b-cy8l0z8bma] {
    text-align: center;
    padding: 24px 16px;
    color: #9ca3af;
}

.alias-empty-state i[b-cy8l0z8bma] {
    font-size: 32px;
    color: #d1d5db;
    display: block;
    margin-bottom: 8px;
}

.alias-empty-state p[b-cy8l0z8bma] {
    font-size: 13px;
    margin: 0;
    color: #6b7280;
}

/* Add Form Section */
.alias-add-form[b-cy8l0z8bma] {
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
}

.form-title[b-cy8l0z8bma] {
    font-size: 13px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-title i[b-cy8l0z8bma] {
    font-size: 14px;
    color: #667eea;
}

/* Responsive Design */
@media (max-width: 768px) {
    .alias-section[b-cy8l0z8bma] {
        padding: 14px;
    }

    .alias-header[b-cy8l0z8bma] {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .alias-item[b-cy8l0z8bma] {
        padding: 10px;
        flex-direction: column;
    }

    .alias-item.editable[b-cy8l0z8bma] {
        align-items: stretch;
    }

    .alias-names[b-cy8l0z8bma] {
        gap: 8px;
    }

    .alias-name-badge[b-cy8l0z8bma] {
        padding: 5px 8px;
        font-size: 12px;
    }

    .alias-inputs[b-cy8l0z8bma] {
        gap: 10px;
        min-width: 100%;
    }

    .alias-input[b-cy8l0z8bma] {
        min-height: 34px;
        padding: 7px 8px;
        font-size: 12px;
    }

    .btn-delete[b-cy8l0z8bma],
    .btn-add[b-cy8l0z8bma] {
        width: 100%;
        justify-content: center;
        padding: 9px 12px;
        font-size: 12px;
    }

    .form-title[b-cy8l0z8bma] {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .alias-section[b-cy8l0z8bma] {
        padding: 12px;
        border-radius: 8px;
    }

    .alias-header[b-cy8l0z8bma] {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .alias-header i[b-cy8l0z8bma] {
        font-size: 14px;
    }

    .alias-list[b-cy8l0z8bma] {
        gap: 10px;
        margin-bottom: 12px;
    }

    .alias-item[b-cy8l0z8bma] {
        padding: 10px;
        flex-direction: column;
        gap: 10px;
    }

    .alias-names[b-cy8l0z8bma] {
        flex-direction: column;
        gap: 6px;
        width: 100%;
    }

    .alias-name-badge[b-cy8l0z8bma] {
        padding: 5px 8px;
        font-size: 11px;
        width: 100%;
    }

    .alias-inputs[b-cy8l0z8bma] {
        flex-direction: column;
        gap: 8px;
        min-width: 100%;
    }

    .alias-input-group[b-cy8l0z8bma] {
        gap: 3px;
    }

    .alias-input-label[b-cy8l0z8bma] {
        font-size: 10px;
    }

    .alias-input[b-cy8l0z8bma] {
        min-height: 32px;
        padding: 6px 8px;
        font-size: 12px;
    }

    .btn-delete[b-cy8l0z8bma],
    .btn-add[b-cy8l0z8bma] {
        width: 100%;
        justify-content: center;
        padding: 9px 12px;
        font-size: 11px;
        margin-top: 4px;
    }

    .btn-delete span[b-cy8l0z8bma],
    .btn-add span[b-cy8l0z8bma] {
        display: none;
    }

    .btn-delete i[b-cy8l0z8bma],
    .btn-add i[b-cy8l0z8bma] {
        font-size: 12px;
    }

    .alias-add-form[b-cy8l0z8bma] {
        padding-top: 10px;
    }

    .form-title[b-cy8l0z8bma] {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .alias-empty-state[b-cy8l0z8bma] {
        padding: 20px 12px;
    }

    .alias-empty-state i[b-cy8l0z8bma] {
        font-size: 28px;
        margin-bottom: 6px;
    }

    .alias-empty-state p[b-cy8l0z8bma] {
        font-size: 12px;
    }
}

/* Print Styles */
@media print {
    .alias-section[b-cy8l0z8bma] {
        border: 1px solid #d1d5db;
        box-shadow: none;
    }

    .btn-delete[b-cy8l0z8bma],
    .btn-add[b-cy8l0z8bma] {
        display: none;
    }

    .alias-add-form[b-cy8l0z8bma] {
        display: none;
    }
}
/* /Pages/EditPersonComponent.razor.rz.scp.css */
/* Edit Person Form Container */
.edit-person-form[b-pqtdb3u74e] {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Form Section */
.form-section[b-pqtdb3u74e] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

/* Section Title */
.section-title[b-pqtdb3u74e] {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    padding: 18px 24px;
    background: linear-gradient(90deg, #f3f4f6 0%, #ffffff 100%);
    border-bottom: 2px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title i[b-pqtdb3u74e] {
    font-size: 20px;
    color: #667eea;
}

.marriage-count[b-pqtdb3u74e] {
    margin-left: auto;
    font-size: 13px;
    font-weight: 600;
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 4px 12px;
    border-radius: 16px;
}

/* Section Content */
.section-content[b-pqtdb3u74e] {
    padding: 24px;
}

/* Form Grid */
.form-grid[b-pqtdb3u74e] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.form-grid-2col[b-pqtdb3u74e] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

/* Form Group */
.form-group[b-pqtdb3u74e] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Form Label */
.form-label[b-pqtdb3u74e] {
    font-size: 13px;
    font-weight: 600;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-label i[b-pqtdb3u74e] {
    font-size: 14px;
    color: #667eea;
    min-width: 16px;
}

/* Form Input */
.form-input[b-pqtdb3u74e] {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.2s ease;
    background: white;
    color: #1f2937;
    min-height: 40px;
}

.form-input[b-pqtdb3u74e]::placeholder {
    color: #9ca3af;
    font-style: italic;
}

.form-input:focus[b-pqtdb3u74e] {
    outline: none;
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.02);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-input:hover:not(:focus)[b-pqtdb3u74e] {
    border-color: #d1d5db;
}

/* Form Select */
.form-select[b-pqtdb3u74e] {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    background: white;
    color: #1f2937;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 40px;
}

.form-select:focus[b-pqtdb3u74e] {
    outline: none;
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.02);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-select:hover:not(:focus)[b-pqtdb3u74e] {
    border-color: #d1d5db;
}

.form-select option[b-pqtdb3u74e] {
    background: white;
    color: #1f2937;
    padding: 8px 12px;
}

/* Information Subsection */
.info-subsection[b-pqtdb3u74e] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    background: rgba(102, 126, 234, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(102, 126, 234, 0.08);
}

/* Location Toggle Section */
.location-toggle-section[b-pqtdb3u74e] {
    display: flex;
    margin-top: 16px;
}

.btn-toggle-location[b-pqtdb3u74e] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.05) 100%);
    color: #667eea;
    border: 2px solid #dbeafe;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: inherit;
}

.btn-toggle-location:hover[b-pqtdb3u74e] {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.12) 0%, rgba(118, 75, 162, 0.08) 100%);
    border-color: #667eea;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
    transform: translateY(-1px);
}

.btn-toggle-location:active[b-pqtdb3u74e] {
    transform: translateY(0);
}

.btn-toggle-location i:first-child[b-pqtdb3u74e] {
    font-size: 16px;
    transition: transform 0.3s ease;
    min-width: 16px;
}

.toggle-text[b-pqtdb3u74e] {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: center;
}

.toggle-text i[b-pqtdb3u74e] {
    font-size: 15px;
}

/* Location Content Section */
.location-content-section[b-pqtdb3u74e] {
    margin-top: 16px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.04) 0%, rgba(102, 126, 234, 0.02) 100%);
    border: 2px solid #dbeafe;
    border-radius: 12px;
    animation: slideIn-b-pqtdb3u74e 0.3s ease;
}

@keyframes slideIn-b-pqtdb3u74e {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.location-header[b-pqtdb3u74e] {
    font-size: 14px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(102, 126, 234, 0.1);
}

.location-header i[b-pqtdb3u74e] {
    font-size: 16px;
    color: #667eea;
}

/* Marriages List */
.marriages-list[b-pqtdb3u74e] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.marriage-item[b-pqtdb3u74e] {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 16px;
    transition: all 0.2s ease;
}

.marriage-item:hover[b-pqtdb3u74e] {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-color: #dbeafe;
}

.marriage-header[b-pqtdb3u74e] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    gap: 12px;
}

.marriage-spouse[b-pqtdb3u74e] {
    flex: 1;
}

.btn-marriage-details[b-pqtdb3u74e] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 14px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-marriage-details:hover[b-pqtdb3u74e] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.btn-marriage-details:active[b-pqtdb3u74e] {
    transform: translateY(0);
}

.btn-marriage-details i[b-pqtdb3u74e] {
    font-size: 12px;
}

.marriage-content[b-pqtdb3u74e] {
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 12px;
}

.marriage-location[b-pqtdb3u74e] {
    padding-top: 12px;
}

/* Empty State */
.empty-state[b-pqtdb3u74e] {
    text-align: center;
    padding: 40px 24px;
    color: #9ca3af;
}

.empty-state i[b-pqtdb3u74e] {
    font-size: 48px;
    color: #d1d5db;
    display: block;
    margin-bottom: 12px;
}

.empty-state p[b-pqtdb3u74e] {
    font-size: 14px;
    margin: 0;
    color: #6b7280;
}

/* Marriage Modal Overlay */
.marriage-modal-overlay[b-pqtdb3u74e] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

.marriage-modal-overlay:not(.hidden)[b-pqtdb3u74e] {
    opacity: 1;
    visibility: visible;
}

.marriage-modal-overlay.hidden[b-pqtdb3u74e] {
    opacity: 0;
    visibility: hidden;
}

/* Marriage Modal */
.marriage-modal[b-pqtdb3u74e] {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn-b-pqtdb3u74e 0.3s ease;
}

@keyframes modalSlideIn-b-pqtdb3u74e {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header[b-pqtdb3u74e] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-bottom: none;
}

.modal-title[b-pqtdb3u74e] {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-title i[b-pqtdb3u74e] {
    font-size: 24px;
}

.modal-close[b-pqtdb3u74e] {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.modal-close:hover[b-pqtdb3u74e] {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.modal-body[b-pqtdb3u74e] {
    padding: 24px;
}

.modal-footer[b-pqtdb3u74e] {
    padding: 20px 24px;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.btn-primary[b-pqtdb3u74e] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary:hover[b-pqtdb3u74e] {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(102, 126, 234, 0.4);
}

.btn-primary:active[b-pqtdb3u74e] {
    transform: translateY(0);
}

.btn-primary i[b-pqtdb3u74e] {
    font-size: 16px;
}

.btn-secondary[b-pqtdb3u74e] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    background: #e5e7eb;
    color: #1f2937;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-secondary:hover[b-pqtdb3u74e] {
    background: #d1d5db;
}

.btn-secondary:active[b-pqtdb3u74e] {
    transform: scale(0.98);
}

.btn-secondary i[b-pqtdb3u74e] {
    font-size: 16px;
}

/* Scrollbar Styling */
.marriage-modal[b-pqtdb3u74e]::-webkit-scrollbar {
    width: 8px;
}

.marriage-modal[b-pqtdb3u74e]::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.marriage-modal[b-pqtdb3u74e]::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.marriage-modal[b-pqtdb3u74e]::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-grid[b-pqtdb3u74e] {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 16px;
    }

    .form-grid-2col[b-pqtdb3u74e] {
        grid-template-columns: 1fr;
    }

    .section-title[b-pqtdb3u74e] {
        padding: 16px 18px;
        font-size: 16px;
    }

    .section-content[b-pqtdb3u74e] {
        padding: 18px;
    }

    .info-subsection[b-pqtdb3u74e] {
        padding: 14px;
    }

    .btn-toggle-location[b-pqtdb3u74e] {
        padding: 11px 14px;
        font-size: 13px;
        gap: 10px;
    }

    .location-content-section[b-pqtdb3u74e] {
        margin-top: 14px;
        padding: 16px;
    }

    .location-header[b-pqtdb3u74e] {
        font-size: 13px;
        margin-bottom: 12px;
        gap: 8px;
    }

    .date-control[b-pqtdb3u74e] {
        flex-direction: column;
        gap: 12px;
    }

    .date-input-group[b-pqtdb3u74e] {
        min-width: 100%;
    }

    .marriage-header[b-pqtdb3u74e] {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-marriage-details[b-pqtdb3u74e] {
        width: 100%;
        justify-content: center;
    }

    .modal-header[b-pqtdb3u74e] {
        padding: 18px;
    }

    .modal-title[b-pqtdb3u74e] {
        font-size: 18px;
    }

    .modal-body[b-pqtdb3u74e] {
        padding: 18px;
    }

    .modal-footer[b-pqtdb3u74e] {
        padding: 14px 18px;
    }

    .btn-primary[b-pqtdb3u74e],
    .btn-secondary[b-pqtdb3u74e] {
        padding: 9px 18px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .form-grid[b-pqtdb3u74e] {
        grid-template-columns: 1fr;
    }

    .form-grid-2col[b-pqtdb3u74e] {
        grid-template-columns: 1fr;
    }

    .form-input[b-pqtdb3u74e],
    .form-select[b-pqtdb3u74e] {
        min-height: 36px;
        padding: 8px 10px;
        font-size: 13px;
    }

    .section-title[b-pqtdb3u74e] {
        padding: 14px 16px;
        font-size: 15px;
    }

    .section-content[b-pqtdb3u74e] {
        padding: 16px;
    }

    .info-subsection[b-pqtdb3u74e] {
        padding: 12px;
        border-radius: 8px;
    }

    .location-toggle-section[b-pqtdb3u74e] {
        margin-top: 12px;
    }

    .btn-toggle-location[b-pqtdb3u74e] {
        padding: 10px 12px;
        font-size: 12px;
        gap: 8px;
        flex-wrap: wrap;
    }

    .toggle-text[b-pqtdb3u74e] {
        width: 100%;
    }

    .location-content-section[b-pqtdb3u74e] {
        margin-top: 12px;
        padding: 14px;
        border-radius: 8px;
    }

    .location-header[b-pqtdb3u74e] {
        font-size: 12px;
        margin-bottom: 10px;
        gap: 6px;
    }

    .location-header i[b-pqtdb3u74e] {
        font-size: 14px;
    }

    .marriage-item[b-pqtdb3u74e] {
        padding: 12px;
    }

    .empty-state[b-pqtdb3u74e] {
        padding: 30px 16px;
    }

    .empty-state i[b-pqtdb3u74e] {
        font-size: 40px;
        margin-bottom: 10px;
    }

    .empty-state p[b-pqtdb3u74e] {
        font-size: 13px;
    }

    .marriage-modal[b-pqtdb3u74e] {
        border-radius: 12px;
        max-height: 95vh;
    }

    .modal-header[b-pqtdb3u74e] {
        padding: 16px;
        flex-wrap: wrap;
    }

    .modal-title[b-pqtdb3u74e] {
        font-size: 16px;
        width: 100%;
    }

    .modal-close[b-pqtdb3u74e] {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .modal-body[b-pqtdb3u74e] {
        padding: 16px;
    }

    .modal-footer[b-pqtdb3u74e] {
        padding: 12px 16px;
        flex-direction: column;
    }

    .btn-primary[b-pqtdb3u74e],
    .btn-secondary[b-pqtdb3u74e] {
        width: 100%;
        padding: 10px 16px;
        font-size: 12px;
    }
}

/* Print Styles */
@media print {
    .form-section[b-pqtdb3u74e] {
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #d1d5db;
    }

    .btn-toggle[b-pqtdb3u74e],
    .btn-toggle-location[b-pqtdb3u74e],
    .btn-marriage-details[b-pqtdb3u74e],
    .btn-primary[b-pqtdb3u74e],
    .btn-secondary[b-pqtdb3u74e] {
        display: none;
    }

    .location-content-section[b-pqtdb3u74e] {
        display: none;
    }
}
/* /Pages/LocationEditComponent.razor.rz.scp.css */
/* ===================================== */
/* Location Edit Component - Bootstrap    */
/* ===================================== */

.location-edit-container[b-5s2b2cfm2s] {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}

/* Location Form Wrapper */
.location-form-wrapper[b-5s2b2cfm2s] {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
}

.location-form-wrapper:hover[b-5s2b2cfm2s] {
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.15) !important;
    transform: translateY(-2px);
}

/* Card Customization */
.location-form-wrapper.card[b-5s2b2cfm2s] {
    border: none !important;
    border-radius: 12px !important;
}

.location-form-wrapper .card-header[b-5s2b2cfm2s] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border: none !important;
    padding: 20px 24px !important;
}

.location-form-wrapper .card-body[b-5s2b2cfm2s] {
    padding: 24px !important;
}

/* Location Header Section */
.location-header-section[b-5s2b2cfm2s] {
    display: flex;
    align-items: center;
    gap: 14px;
    color: white;
}

.location-header-icon[b-5s2b2cfm2s] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    font-size: 18px;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.location-form-wrapper:hover .location-header-icon[b-5s2b2cfm2s] {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1) rotateZ(-5deg);
}

/* Location Form Title */
.location-form-title[b-5s2b2cfm2s] {
    font-size: 14px;
    font-weight: 700;
    color: white;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    margin: 0 !important;
}

/* Location Fields Grid */
.location-fields-grid[b-5s2b2cfm2s] {
    padding: 24px !important;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    width: 100%;
}

/* Location Form Group */
.location-form-group[b-5s2b2cfm2s] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: all 0.3s ease;
}

.location-form-group-full[b-5s2b2cfm2s] {
    grid-column: 1 / -1;
}

/* Location Form Label - Bootstrap Override */
.location-form-label[b-5s2b2cfm2s] {
    font-size: 12px;
    font-weight: 700;
    color: #374151 !important;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 8px !important;
    transition: all 0.2s ease;
}

.location-form-label i[b-5s2b2cfm2s] {
    font-size: 14px;
    color: #667eea;
    min-width: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.location-form-group:hover .location-form-label i[b-5s2b2cfm2s] {
    transform: scale(1.2) rotateY(10deg);
    color: #764ba2;
}

/* Location Form Input - Bootstrap Override */
.location-form-input[b-5s2b2cfm2s] {
    width: 100%;
    padding: 11px 14px !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    font-family: inherit !important;
    background: white !important;
    color: #1f2937 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: auto !important;
    line-height: 1.5 !important;
}

.location-form-input[b-5s2b2cfm2s]::placeholder {
    color: #9ca3af !important;
    font-style: italic;
    opacity: 1 !important;
}

.location-form-input:hover:not(:focus)[b-5s2b2cfm2s] {
    border-color: #d1d5db !important;
    background: rgba(102, 126, 234, 0.02) !important;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.05) !important;
}

.location-form-input:focus[b-5s2b2cfm2s] {
    outline: none !important;
    border-color: #667eea !important;
    background: rgba(102, 126, 234, 0.03) !important;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.12) !important;
    padding: 11px 14px !important;
}

.location-form-input:focus-visible[b-5s2b2cfm2s] {
    outline: none !important;
    border-color: #667eea !important;
}

/* Input with value styling */
.location-form-input:not(:placeholder-shown)[b-5s2b2cfm2s] {
    border-color: #dbeafe !important;
    background: rgba(102, 126, 234, 0.02) !important;
}

/* Bootstrap Form Control Overrides */
.location-form-input.form-control[b-5s2b2cfm2s] {
    min-height: 44px;
    padding: 11px 14px;
    border-width: 2px;
}

.location-form-input.form-control:focus[b-5s2b2cfm2s] {
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.12);
}

.location-form-group .form-label[b-5s2b2cfm2s] {
    margin-bottom: 8px;
    font-weight: 700;
}

/* Responsive Design - Bootstrap Integration */
@media (max-width: 991px) {
    .location-fields-grid[b-5s2b2cfm2s] {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
        padding: 20px !important;
    }

    .location-header-section[b-5s2b2cfm2s] {
        gap: 12px;
    }

    .location-form-wrapper .card-body[b-5s2b2cfm2s] {
        padding: 20px !important;
    }
}

@media (max-width: 576px) {
    .location-fields-grid[b-5s2b2cfm2s] {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 16px !important;
    }

    .location-header-section[b-5s2b2cfm2s] {
        padding: 16px 16px !important;
        gap: 10px;
    }

    .location-form-wrapper .card-header[b-5s2b2cfm2s] {
        padding: 16px 16px !important;
    }

    .location-form-wrapper .card-body[b-5s2b2cfm2s] {
        padding: 16px !important;
    }

    .location-form-title[b-5s2b2cfm2s] {
        font-size: 13px;
    }

    .location-form-input[b-5s2b2cfm2s] {
        padding: 10px 12px !important;
        font-size: 13px !important;
    }

    .location-header-icon[b-5s2b2cfm2s] {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .location-form-wrapper[b-5s2b2cfm2s] {
        background: #1f2937 !important;
    }

    .location-form-input[b-5s2b2cfm2s] {
        background: #374151 !important;
        color: #f3f4f6 !important;
        border-color: #4b5563 !important;
    }

    .location-form-input[b-5s2b2cfm2s]::placeholder {
        color: #9ca3af !important;
    }

    .location-form-input:focus[b-5s2b2cfm2s] {
        background: #1f2937 !important;
        border-color: #667eea !important;
    }

    .location-form-label[b-5s2b2cfm2s] {
        color: #e5e7eb !important;
    }

    .location-fields-grid[b-5s2b2cfm2s] {
        background: #1f2937;
    }
}

/* Accessibility */
.location-form-input:disabled[b-5s2b2cfm2s] {
    background: #f3f4f6 !important;
    color: #9ca3af !important;
    cursor: not-allowed !important;
    border-color: #e5e7eb !important;
    opacity: 0.7 !important;
}

/* Keyboard Navigation */
.location-form-input:focus-visible[b-5s2b2cfm2s] {
    outline: 2px solid #667eea !important;
    outline-offset: 2px !important;
}

/* Form Validation States */
.location-form-input.is-invalid[b-5s2b2cfm2s] {
    border-color: #ef4444 !important;
    background: rgba(239, 68, 68, 0.03) !important;
}

.location-form-input.is-invalid:focus[b-5s2b2cfm2s] {
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12) !important;
    border-color: #ef4444 !important;
}

.location-form-input.is-valid[b-5s2b2cfm2s] {
    border-color: #10b981 !important;
    background: rgba(16, 185, 129, 0.03) !important;
}

.location-form-input.is-valid:focus[b-5s2b2cfm2s] {
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12) !important;
    border-color: #10b981 !important;
}

/* Loading State */
.location-form-input.is-loading[b-5s2b2cfm2s] {
    background: linear-gradient(90deg, rgba(102, 126, 234, 0.05) 0%, rgba(102, 126, 234, 0.1) 50%, rgba(102, 126, 234, 0.05) 100%);
    background-size: 200% 100%;
    animation: shimmer-b-5s2b2cfm2s 1.5s infinite;
}

@keyframes shimmer-b-5s2b2cfm2s {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Animation for form appearance */
@keyframes fadeInUp-b-5s2b2cfm2s {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.location-form-wrapper[b-5s2b2cfm2s] {
    animation: fadeInUp-b-5s2b2cfm2s 0.4s ease;
}

/* /Pages_2/EmailTest.razor.rz.scp.css */
/* Email Test Page Container */
.email-test-page[b-sn3s6c8s1g] {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Page Header */
.email-header[b-sn3s6c8s1g] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.25);
}

.header-content[b-sn3s6c8s1g] {
    max-width: 1200px;
    margin: 0 auto;
}

.page-title[b-sn3s6c8s1g] {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.page-title i[b-sn3s6c8s1g] {
    font-size: 36px;
}

.page-subtitle[b-sn3s6c8s1g] {
    font-size: 15px;
    opacity: 0.95;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Email Section */
.email-section[b-sn3s6c8s1g] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    padding: 32px;
}

.section-title[b-sn3s6c8s1g] {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 28px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title i[b-sn3s6c8s1g] {
    font-size: 22px;
    color: #667eea;
}

/* Email Providers Container */
.email-providers-container[b-sn3s6c8s1g] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 28px;
}

/* Provider Card */
.provider-card[b-sn3s6c8s1g] {
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.provider-card:hover[b-sn3s6c8s1g] {
    border-color: #dbeafe;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.15);
    background: white;
    transform: translateY(-2px);
}

.provider-header[b-sn3s6c8s1g] {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(90deg, rgba(102, 126, 234, 0.05) 0%, rgba(102, 126, 234, 0.02) 100%);
    border-bottom: 2px solid #e5e7eb;
}

.provider-icon-wrapper[b-sn3s6c8s1g] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    font-size: 24px;
    color: white;
    font-weight: 600;
}

.provider-icon-wrapper.outlook-icon[b-sn3s6c8s1g] {
    background: linear-gradient(135deg, #0078d4 0%, #106ebe 100%);
}

.provider-icon-wrapper.gmail-icon[b-sn3s6c8s1g] {
    background: linear-gradient(135deg, #ea4335 0%, #c5221f 100%);
}

.provider-name[b-sn3s6c8s1g] {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.provider-body[b-sn3s6c8s1g] {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

.provider-description[b-sn3s6c8s1g] {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

/* Send Test Button */
.btn-send-test[b-sn3s6c8s1g] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 20px;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: inherit;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-top: auto;
}

.btn-send-test i[b-sn3s6c8s1g] {
    font-size: 14px;
}

.outlook-btn[b-sn3s6c8s1g] {
    background: linear-gradient(135deg, #0078d4 0%, #106ebe 100%);
    color: white;
}

.outlook-btn:hover[b-sn3s6c8s1g] {
    box-shadow: 0 4px 16px rgba(0, 120, 212, 0.3);
    transform: translateY(-2px);
}

.outlook-btn:active[b-sn3s6c8s1g] {
    transform: translateY(0);
}

.gmail-btn[b-sn3s6c8s1g] {
    background: linear-gradient(135deg, #ea4335 0%, #c5221f 100%);
    color: white;
}

.gmail-btn:hover[b-sn3s6c8s1g] {
    box-shadow: 0 4px 16px rgba(234, 67, 53, 0.3);
    transform: translateY(-2px);
}

.gmail-btn:active[b-sn3s6c8s1g] {
    transform: translateY(0);
}

/* Status Message */
.status-message[b-sn3s6c8s1g] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: #dcfce7;
    border: 2px solid #86efac;
    border-radius: 8px;
    color: #15803d;
    font-size: 13px;
    font-weight: 500;
    animation: slideIn-b-sn3s6c8s1g 0.3s ease;
}

.status-message i[b-sn3s6c8s1g] {
    font-size: 16px;
    flex-shrink: 0;
}

/* Info Box */
.info-box[b-sn3s6c8s1g] {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    padding: 16px;
    background: rgba(251, 191, 36, 0.08);
    border: 2px solid rgba(251, 191, 36, 0.2);
    border-radius: 10px;
    font-size: 13px;
    color: #92400e;
}

.info-box i[b-sn3s6c8s1g] {
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    color: #f59e0b;
}

.info-content[b-sn3s6c8s1g] {
    flex: 1;
}

.info-content p[b-sn3s6c8s1g] {
    margin: 0;
    line-height: 1.5;
}

/* Animations */
@keyframes slideIn-b-sn3s6c8s1g {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .email-providers-container[b-sn3s6c8s1g] {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .email-header[b-sn3s6c8s1g] {
        padding: 28px 20px;
    }

    .page-title[b-sn3s6c8s1g] {
        font-size: 24px;
    }

    .page-subtitle[b-sn3s6c8s1g] {
        font-size: 13px;
    }

    .email-section[b-sn3s6c8s1g] {
        padding: 20px;
    }

    .section-title[b-sn3s6c8s1g] {
        font-size: 17px;
        margin-bottom: 20px;
    }

    .email-providers-container[b-sn3s6c8s1g] {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 20px;
    }

    .provider-header[b-sn3s6c8s1g] {
        padding: 16px;
        gap: 12px;
    }

    .provider-icon-wrapper[b-sn3s6c8s1g] {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .provider-name[b-sn3s6c8s1g] {
        font-size: 16px;
    }

    .provider-body[b-sn3s6c8s1g] {
        padding: 16px;
        gap: 12px;
    }

    .provider-description[b-sn3s6c8s1g] {
        font-size: 12px;
    }

    .btn-send-test[b-sn3s6c8s1g] {
        padding: 10px 18px;
        font-size: 12px;
    }

    .btn-send-test i[b-sn3s6c8s1g] {
        font-size: 13px;
    }

    .status-message[b-sn3s6c8s1g] {
        font-size: 12px;
        padding: 12px 14px;
        margin-top: 16px;
    }

    .info-box[b-sn3s6c8s1g] {
        padding: 12px;
        font-size: 12px;
        margin-top: 16px;
    }

    .info-box i[b-sn3s6c8s1g] {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .email-test-page[b-sn3s6c8s1g] {
        gap: 16px;
    }

    .email-header[b-sn3s6c8s1g] {
        padding: 20px 16px;
        border-radius: 8px;
    }

    .page-title[b-sn3s6c8s1g] {
        font-size: 20px;
        gap: 8px;
    }

    .page-title i[b-sn3s6c8s1g] {
        font-size: 24px;
    }

    .page-subtitle[b-sn3s6c8s1g] {
        font-size: 12px;
    }

    .email-section[b-sn3s6c8s1g] {
        border-radius: 8px;
        padding: 16px;
    }

    .section-title[b-sn3s6c8s1g] {
        font-size: 15px;
        margin-bottom: 16px;
        gap: 8px;
    }

    .section-title i[b-sn3s6c8s1g] {
        font-size: 18px;
    }

    .email-providers-container[b-sn3s6c8s1g] {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 16px;
    }

    .provider-card[b-sn3s6c8s1g] {
        border-radius: 10px;
    }

    .provider-header[b-sn3s6c8s1g] {
        padding: 14px;
        gap: 10px;
    }

    .provider-icon-wrapper[b-sn3s6c8s1g] {
        width: 36px;
        height: 36px;
        font-size: 18px;
        border-radius: 8px;
    }

    .provider-name[b-sn3s6c8s1g] {
        font-size: 14px;
    }

    .provider-body[b-sn3s6c8s1g] {
        padding: 14px;
        gap: 10px;
    }

    .provider-description[b-sn3s6c8s1g] {
        font-size: 11px;
    }

    .btn-send-test[b-sn3s6c8s1g] {
        padding: 9px 16px;
        font-size: 11px;
        border-radius: 6px;
    }

    .btn-send-test i[b-sn3s6c8s1g] {
        font-size: 12px;
    }

    .status-message[b-sn3s6c8s1g] {
        font-size: 11px;
        padding: 10px 12px;
        margin-top: 12px;
        border-radius: 6px;
    }

    .status-message i[b-sn3s6c8s1g] {
        font-size: 14px;
    }

    .info-box[b-sn3s6c8s1g] {
        padding: 10px;
        font-size: 11px;
        margin-top: 12px;
        border-radius: 8px;
    }

    .info-box i[b-sn3s6c8s1g] {
        font-size: 12px;
    }
}

/* Print Styles */
@media print {
    .email-test-page[b-sn3s6c8s1g] {
        gap: 12px;
    }

    .email-header[b-sn3s6c8s1g] {
        box-shadow: none;
    }

    .email-section[b-sn3s6c8s1g] {
        box-shadow: none;
        border: 1px solid #d1d5db;
    }

    .btn-send-test[b-sn3s6c8s1g] {
        display: none;
    }

    .info-box[b-sn3s6c8s1g] {
        display: none;
    }
}
/* /Pages_2/HomePage.razor.rz.scp.css */
/* Home Page Styles */
.home-page[b-qkd5fzuvwx] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    background-color: #f8f9fa;
}

/* Hero Section */
.hero-section[b-qkd5fzuvwx] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 40px;
    text-align: center;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 60px;
}

.hero-content[b-qkd5fzuvwx] {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title[b-qkd5fzuvwx] {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 16px 0;
    letter-spacing: -1px;
    line-height: 1.2;
}

.hero-subtitle[b-qkd5fzuvwx] {
    font-size: 24px;
    font-weight: 500;
    margin: 0 0 20px 0;
    opacity: 0.95;
}

.hero-description[b-qkd5fzuvwx] {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 30px 0;
    opacity: 0.9;
}

.hero-cta[b-qkd5fzuvwx] {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Features Section */
.features-section[b-qkd5fzuvwx] {
    padding: 60px 40px;
    background-color: white;
    border-radius: 16px;
    margin: 0 40px 60px 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.section-title[b-qkd5fzuvwx] {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 50px 0;
    color: #1f2937;
    position: relative;
    padding-bottom: 20px;
}

.section-title[b-qkd5fzuvwx]::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.features-grid[b-qkd5fzuvwx] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card[b-qkd5fzuvwx] {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-card:hover[b-qkd5fzuvwx] {
    border-color: #667eea;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.15);
    transform: translateY(-4px);
}

.feature-icon[b-qkd5fzuvwx] {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
}

.feature-title[b-qkd5fzuvwx] {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 12px 0;
}

.feature-description[b-qkd5fzuvwx] {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Getting Started Section */
.getting-started-section[b-qkd5fzuvwx] {
    background: linear-gradient(135deg, #f5f7fa 0%, #f0f4ff 100%);
    padding: 60px 40px;
    border-radius: 16px;
    margin: 0 40px 60px 40px;
}

.getting-started-section .section-title[b-qkd5fzuvwx] {
    color: #1f2937;
    margin-bottom: 50px;
}

.steps-container[b-qkd5fzuvwx] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.step-item[b-qkd5fzuvwx] {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    min-width: 200px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.step-item:hover[b-qkd5fzuvwx] {
    border-color: #667eea;
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.1);
}

.step-number[b-qkd5fzuvwx] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 15px;
}

.step-item h4[b-qkd5fzuvwx] {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 8px 0;
}

.step-item p[b-qkd5fzuvwx] {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

.step-arrow[b-qkd5fzuvwx] {
    font-size: 28px;
    color: #667eea;
    font-weight: 700;
    display: none;
}

@media (min-width: 768px) {
    .step-arrow[b-qkd5fzuvwx] {
        display: block;
    }
}

.steps-cta[b-qkd5fzuvwx] {
    text-align: center;
}

/* Contact Section */
.contact-section[b-qkd5fzuvwx] {
    background: white;
    padding: 50px 40px;
    border-radius: 12px;
    margin: 0 40px 60px 40px;
    border-left: 5px solid #667eea;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-content[b-qkd5fzuvwx] {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content h2[b-qkd5fzuvwx] {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 15px 0;
}

.contact-content p[b-qkd5fzuvwx] {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.contact-email[b-qkd5fzuvwx] {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-email:hover[b-qkd5fzuvwx] {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Footer CTA */
.footer-cta[b-qkd5fzuvwx] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    text-align: center;
    border-radius: 12px;
    margin: 0 40px 40px 40px;
}

.footer-text[b-qkd5fzuvwx] {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.5px;
}

/* CTA Buttons */
.cta-button[b-qkd5fzuvwx] {
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button.primary[b-qkd5fzuvwx] {
    background: white;
    color: #667eea;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cta-button.primary:hover[b-qkd5fzuvwx] {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.cta-button.secondary[b-qkd5fzuvwx] {
    background: white;
    color: #667eea;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.cta-button.secondary:hover[b-qkd5fzuvwx] {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section[b-qkd5fzuvwx] {
        padding: 40px 20px;
        margin-bottom: 40px;
    }

    .hero-title[b-qkd5fzuvwx] {
        font-size: 36px;
    }

    .hero-subtitle[b-qkd5fzuvwx] {
        font-size: 18px;
    }

    .hero-description[b-qkd5fzuvwx] {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .features-section[b-qkd5fzuvwx],
    .getting-started-section[b-qkd5fzuvwx],
    .contact-section[b-qkd5fzuvwx],
    .footer-cta[b-qkd5fzuvwx] {
        margin-left: 20px;
        margin-right: 20px;
        padding: 40px 20px;
    }

    .features-grid[b-qkd5fzuvwx] {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-title[b-qkd5fzuvwx] {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .steps-container[b-qkd5fzuvwx] {
        flex-direction: column;
        gap: 0;
    }

    .step-item[b-qkd5fzuvwx] {
        width: 100%;
        min-width: unset;
    }

    .feature-card[b-qkd5fzuvwx] {
        padding: 25px;
    }

    .cta-button[b-qkd5fzuvwx] {
        padding: 12px 24px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .home-page[b-qkd5fzuvwx] {
        padding: 0;
    }

    .hero-section[b-qkd5fzuvwx] {
        padding: 30px 15px;
        border-radius: 0;
        margin-bottom: 30px;
    }

    .hero-title[b-qkd5fzuvwx] {
        font-size: 28px;
    }

    .hero-subtitle[b-qkd5fzuvwx] {
        font-size: 16px;
    }

    .features-section[b-qkd5fzuvwx],
    .getting-started-section[b-qkd5fzuvwx],
    .contact-section[b-qkd5fzuvwx],
    .footer-cta[b-qkd5fzuvwx] {
        margin-left: 0;
        margin-right: 0;
        padding: 30px 15px;
        border-radius: 0;
    }

    .section-title[b-qkd5fzuvwx] {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .section-title[b-qkd5fzuvwx]::after {
        width: 40px;
    }

    .feature-card[b-qkd5fzuvwx] {
        padding: 20px;
    }

    .feature-icon[b-qkd5fzuvwx] {
        font-size: 40px;
    }

    .feature-title[b-qkd5fzuvwx] {
        font-size: 16px;
    }

    .feature-description[b-qkd5fzuvwx] {
        font-size: 13px;
    }

    .step-number[b-qkd5fzuvwx] {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .contact-content h2[b-qkd5fzuvwx] {
        font-size: 22px;
    }

    .footer-text[b-qkd5fzuvwx] {
        font-size: 16px;
    }

    .cta-button[b-qkd5fzuvwx] {
        width: 100%;
        padding: 12px 16px;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .home-page[b-qkd5fzuvwx] {
        background-color: #1f2937;
    }

    .features-section[b-qkd5fzuvwx],
    .contact-section[b-qkd5fzuvwx] {
        background: #2d3748;
    }

    .getting-started-section[b-qkd5fzuvwx] {
        background: linear-gradient(135deg, #2d3748 0%, #374151 100%);
    }

    .section-title[b-qkd5fzuvwx] {
        color: #f3f4f6;
    }

    .feature-card[b-qkd5fzuvwx] {
        background: #2d3748;
        border-color: #4b5563;
        color: #e5e7eb;
    }

    .feature-card:hover[b-qkd5fzuvwx] {
        border-color: #667eea;
    }

    .feature-title[b-qkd5fzuvwx] {
        color: #f3f4f6;
    }

    .feature-description[b-qkd5fzuvwx] {
        color: #d1d5db;
    }

    .step-item[b-qkd5fzuvwx] {
        background: #2d3748;
        border-color: #4b5563;
    }

    .step-item h4[b-qkd5fzuvwx] {
        color: #f3f4f6;
    }

    .step-item p[b-qkd5fzuvwx] {
        color: #d1d5db;
    }

    .contact-content h2[b-qkd5fzuvwx] {
        color: #f3f4f6;
    }

    .contact-content p[b-qkd5fzuvwx] {
        color: #d1d5db;
    }
}
/* /Pages_2/OTPLogin.razor.rz.scp.css */
/* OTP Login Page */
.otp-login-page[b-qo16hxb5x5] {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 20px;
}

/* Page Header */
.otp-login-header[b-qo16hxb5x5] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.25);
    text-align: center;
}

.header-content[b-qo16hxb5x5] {
    max-width: 600px;
    margin: 0 auto;
}

.page-title[b-qo16hxb5x5] {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.page-title i[b-qo16hxb5x5] {
    font-size: 36px;
}

.page-subtitle[b-qo16hxb5x5] {
    font-size: 15px;
    opacity: 0.95;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* OTP Login Section */
.otp-login-section[b-qo16hxb5x5] {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
}

.login-container[b-qo16hxb5x5] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.15);
    overflow: hidden;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
}

/* Login Step */
.login-step[b-qo16hxb5x5] {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    animation: slideIn-b-qo16hxb5x5 0.3s ease;
}

.step-title[b-qo16hxb5x5] {
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.step-title i[b-qo16hxb5x5] {
    font-size: 26px;
    color: #667eea;
}

.step-description[b-qo16hxb5x5] {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

/* Form Group */
.form-group[b-qo16hxb5x5] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label[b-qo16hxb5x5] {
    font-size: 12px;
    font-weight: 700;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    padding: 0;
}

.form-label i[b-qo16hxb5x5] {
    font-size: 12px;
    color: #667eea;
}

.form-input[b-qo16hxb5x5] {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.2s ease;
    background: white;
    color: #1f2937;
}

.form-input[b-qo16hxb5x5]::placeholder {
    color: #9ca3af;
}

.form-input:focus[b-qo16hxb5x5] {
    outline: none;
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.02);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-input:disabled[b-qo16hxb5x5] {
    background: #f3f4f6;
    color: #9ca3af;
    cursor: not-allowed;
}

.form-input.otp-input[b-qo16hxb5x5] {
    font-size: 18px;
    letter-spacing: 8px;
    text-align: center;
    font-weight: 600;
    font-family: 'Courier New', monospace;
}

/* Email Display */
.email-display[b-qo16hxb5x5] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: linear-gradient(90deg, rgba(102, 126, 234, 0.05) 0%, rgba(102, 126, 234, 0.02) 100%);
    border: 2px solid #dbeafe;
    border-radius: 8px;
    gap: 12px;
}

.email-label[b-qo16hxb5x5] {
    font-size: 12px;
    font-weight: 700;
    color: #667eea;
    text-transform: uppercase;
}

.email-value[b-qo16hxb5x5] {
    flex: 1;
    font-size: 13px;
    color: #1f2937;
    font-weight: 600;
    word-break: break-all;
}

.btn-change-email[b-qo16hxb5x5] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    flex-shrink: 0;
}

.btn-change-email:hover[b-qo16hxb5x5] {
    background: rgba(102, 126, 234, 0.15);
    transform: scale(1.05);
}

/* OTP Info */
.otp-info[b-qo16hxb5x5] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 12px 16px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 12px;
    color: #6b7280;
}

.attempt-counter[b-qo16hxb5x5],
.timer[b-qo16hxb5x5] {
    display: flex;
    align-items: center;
    gap: 6px;
}

.otp-info i[b-qo16hxb5x5] {
    font-size: 13px;
    color: #667eea;
}

.otp-info strong[b-qo16hxb5x5] {
    color: #1f2937;
    font-weight: 700;
}

/* Buttons */
.btn-send-otp[b-qo16hxb5x5],
.btn-verify-otp[b-qo16hxb5x5],
.btn-resend-otp[b-qo16hxb5x5],
.btn-continue[b-qo16hxb5x5] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: inherit;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.btn-send-otp[b-qo16hxb5x5],
.btn-verify-otp[b-qo16hxb5x5],
.btn-continue[b-qo16hxb5x5] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 100%;
}

.btn-send-otp:hover:not(:disabled)[b-qo16hxb5x5],
.btn-verify-otp:hover:not(:disabled)[b-qo16hxb5x5],
.btn-continue:hover:not(:disabled)[b-qo16hxb5x5] {
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
    transform: translateY(-2px);
}

.btn-send-otp:active:not(:disabled)[b-qo16hxb5x5],
.btn-verify-otp:active:not(:disabled)[b-qo16hxb5x5],
.btn-continue:active:not(:disabled)[b-qo16hxb5x5] {
    transform: translateY(0);
}

.btn-send-otp:disabled[b-qo16hxb5x5],
.btn-verify-otp:disabled[b-qo16hxb5x5] {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-resend-otp[b-qo16hxb5x5] {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    border: 2px solid #dbeafe;
}

.btn-resend-otp:hover:not(:disabled)[b-qo16hxb5x5] {
    background: rgba(102, 126, 234, 0.15);
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.2);
    transform: translateY(-2px);
}

.btn-resend-otp:disabled[b-qo16hxb5x5] {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Messages */
.error-message[b-qo16hxb5x5] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #fee2e2;
    border: 2px solid #fecaca;
    border-radius: 8px;
    color: #dc2626;
    font-size: 13px;
    animation: slideIn-b-qo16hxb5x5 0.3s ease;
}

.error-message i[b-qo16hxb5x5] {
    font-size: 16px;
    flex-shrink: 0;
}

.success-message[b-qo16hxb5x5] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #dcfce7;
    border: 2px solid #86efac;
    border-radius: 8px;
    color: #15803d;
    font-size: 13px;
    animation: slideIn-b-qo16hxb5x5 0.3s ease;
}

.success-message i[b-qo16hxb5x5] {
    font-size: 16px;
    flex-shrink: 0;
}

/* Resend Section */
.resend-section[b-qo16hxb5x5] {
    text-align: center;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.resend-label[b-qo16hxb5x5] {
    font-size: 12px;
    color: #6b7280;
    margin: 0;
}

/* Success Step */
.success-step[b-qo16hxb5x5] {
    align-items: center;
    text-align: center;
}

.success-icon[b-qo16hxb5x5] {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #15803d;
    margin: 0 auto;
}

.success-info[b-qo16hxb5x5] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-line[b-qo16hxb5x5] {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #6b7280;
    margin: 0;
}

.info-line i[b-qo16hxb5x5] {
    color: #15803d;
    font-size: 14px;
}

.btn-continue[b-qo16hxb5x5] {
    margin-top: 12px;
}

/* Info Box */
.info-box[b-qo16hxb5x5] {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
    padding: 16px;
    background: rgba(251, 191, 36, 0.08);
    border: 2px solid rgba(251, 191, 36, 0.2);
    border-radius: 10px;
    font-size: 12px;
    color: #92400e;
}

.info-box i[b-qo16hxb5x5] {
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    color: #f59e0b;
}

.info-content[b-qo16hxb5x5] {
    flex: 1;
}

.info-content p[b-qo16hxb5x5] {
    margin: 0;
    line-height: 1.5;
}

/* Animations */
@keyframes slideIn-b-qo16hxb5x5 {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .otp-login-page[b-qo16hxb5x5] {
        padding: 16px;
        gap: 20px;
    }

    .otp-login-header[b-qo16hxb5x5] {
        padding: 28px 20px;
    }

    .page-title[b-qo16hxb5x5] {
        font-size: 24px;
    }

    .page-subtitle[b-qo16hxb5x5] {
        font-size: 13px;
    }

    .login-container[b-qo16hxb5x5] {
        max-width: 100%;
    }

    .login-step[b-qo16hxb5x5] {
        padding: 28px 20px;
        gap: 20px;
    }

    .step-title[b-qo16hxb5x5] {
        font-size: 18px;
    }

    .step-description[b-qo16hxb5x5] {
        font-size: 12px;
    }

    .form-input[b-qo16hxb5x5] {
        padding: 10px 14px;
        font-size: 13px;
    }

    .form-input.otp-input[b-qo16hxb5x5] {
        letter-spacing: 6px;
    }

    .email-display[b-qo16hxb5x5] {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .email-value[b-qo16hxb5x5] {
        width: 100%;
    }

    .btn-change-email[b-qo16hxb5x5] {
        align-self: flex-end;
    }

    .info-box[b-qo16hxb5x5] {
        font-size: 11px;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .otp-login-page[b-qo16hxb5x5] {
        padding: 12px;
        gap: 16px;
        min-height: auto;
    }

    .otp-login-header[b-qo16hxb5x5] {
        padding: 20px 16px;
        border-radius: 8px;
    }

    .page-title[b-qo16hxb5x5] {
        font-size: 20px;
        gap: 8px;
    }

    .page-title i[b-qo16hxb5x5] {
        font-size: 24px;
    }

    .page-subtitle[b-qo16hxb5x5] {
        font-size: 12px;
    }

    .login-container[b-qo16hxb5x5] {
        border-radius: 8px;
    }

    .login-step[b-qo16hxb5x5] {
        padding: 20px 16px;
        gap: 16px;
    }

    .step-title[b-qo16hxb5x5] {
        font-size: 16px;
        gap: 8px;
    }

    .step-title i[b-qo16hxb5x5] {
        font-size: 20px;
    }

    .step-description[b-qo16hxb5x5] {
        font-size: 11px;
    }

    .form-group[b-qo16hxb5x5] {
        gap: 6px;
    }

    .form-label[b-qo16hxb5x5] {
        font-size: 11px;
        gap: 4px;
    }

    .form-input[b-qo16hxb5x5] {
        padding: 9px 12px;
        font-size: 12px;
        border-radius: 6px;
    }

    .form-input.otp-input[b-qo16hxb5x5] {
        font-size: 16px;
        letter-spacing: 4px;
    }

    .email-display[b-qo16hxb5x5] {
        padding: 10px 12px;
        border-radius: 6px;
        font-size: 11px;
    }

    .btn-change-email[b-qo16hxb5x5] {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .otp-info[b-qo16hxb5x5] {
        padding: 10px 12px;
        border-radius: 6px;
        font-size: 11px;
    }

    .btn-send-otp[b-qo16hxb5x5],
    .btn-verify-otp[b-qo16hxb5x5],
    .btn-resend-otp[b-qo16hxb5x5],
    .btn-continue[b-qo16hxb5x5] {
        padding: 10px 20px;
        font-size: 12px;
        border-radius: 6px;
    }

    .error-message[b-qo16hxb5x5],
    .success-message[b-qo16hxb5x5] {
        padding: 10px 12px;
        font-size: 11px;
        border-radius: 6px;
    }

    .resend-section[b-qo16hxb5x5] {
        padding-top: 10px;
        gap: 10px;
    }

    .resend-label[b-qo16hxb5x5] {
        font-size: 11px;
    }

    .success-icon[b-qo16hxb5x5] {
        width: 60px;
        height: 60px;
        font-size: 36px;
    }

    .success-step[b-qo16hxb5x5] {
        padding: 20px 16px;
    }

    .info-line[b-qo16hxb5x5] {
        font-size: 12px;
        gap: 8px;
    }

    .info-box[b-qo16hxb5x5] {
        font-size: 10px;
        padding: 10px;
        border-radius: 8px;
        max-width: 100%;
    }

    .info-box i[b-qo16hxb5x5] {
        font-size: 14px;
    }
}

/* Print Styles */
@media print {
    .otp-login-page[b-qo16hxb5x5] {
        background: white;
    }

    .otp-login-header[b-qo16hxb5x5] {
        box-shadow: none;
    }

    .login-container[b-qo16hxb5x5] {
        box-shadow: none;
        border: 1px solid #d1d5db;
    }

    .info-box[b-qo16hxb5x5] {
        display: none;
    }
}

/* Spinner animation */
@keyframes spin-b-qo16hxb5x5 {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.fa-spin[b-qo16hxb5x5] {
    animation: spin-b-qo16hxb5x5 1s linear infinite;
}
/* /Pages_2/SearchHomePage.razor.rz.scp.css */
/* Search Page Container */
.search-page[b-kyrg38gcjv] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    background-color: #f8f9fa;
    min-height: 100vh;
}

/* Page Header */
.search-header[b-kyrg38gcjv] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px 30px;
    margin-bottom: 40px;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.header-content[b-kyrg38gcjv] {
    max-width: 1200px;
    margin: 0 auto;
}

.page-title[b-kyrg38gcjv] {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    letter-spacing: -0.5px;
}

.page-title i[b-kyrg38gcjv] {
    font-size: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.page-subtitle[b-kyrg38gcjv] {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-weight: 400;
}

/* Search Form Section */
.search-form-section[b-kyrg38gcjv] {
    padding: 30px;
    margin-bottom: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Results Section */
.results-section[b-kyrg38gcjv] {
    padding: 0 30px 40px 30px;
}

.results-header[b-kyrg38gcjv] {
    margin-bottom: 25px;
}

.results-title[b-kyrg38gcjv] {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.results-title i[b-kyrg38gcjv] {
    font-size: 28px;
    color: #667eea;
}

.result-count[b-kyrg38gcjv] {
    font-size: 16px;
    font-weight: 500;
    color: #6b7280;
    margin-left: 12px;
    background: rgba(102, 126, 234, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    color: #667eea;
}

/* Results Container */
.results-container[b-kyrg38gcjv] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.results-table-wrapper[b-kyrg38gcjv] {
    max-height: 700px;
    overflow-y: auto;
    overflow-x: auto;
}

/* Results Table */
.results-table[b-kyrg38gcjv] {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.results-table thead[b-kyrg38gcjv] {
    background: linear-gradient(90deg, #f3f4f6 0%, #ffffff 100%);
    border-bottom: 2px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 10;
}

.results-table th[b-kyrg38gcjv] {
    padding: 16px;
    text-align: left;
    font-weight: 600;
    color: #1f2937;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.results-table th i[b-kyrg38gcjv] {
    font-size: 16px;
    color: #667eea;
}

.action-column[b-kyrg38gcjv] {
    width: 150px;
    padding: 16px !important;
}

.person-column[b-kyrg38gcjv] {
    flex: 1;
    padding: 16px !important;
}

/* Table Rows */
.person-row[b-kyrg38gcjv] {
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s ease;
}

.person-row:hover[b-kyrg38gcjv] {
    background-color: rgba(102, 126, 234, 0.05);
}

.person-row td[b-kyrg38gcjv] {
    padding: 16px;
    vertical-align: middle;
}

.alias-row[b-kyrg38gcjv] {
    background-color: rgba(102, 126, 234, 0.03);
    border-bottom: 1px solid #f0f0f0;
}

.alias-row:hover[b-kyrg38gcjv] {
    background-color: rgba(102, 126, 234, 0.08);
}

.alias-row td[b-kyrg38gcjv] {
    padding: 12px 16px;
    font-size: 13px;
}

.alias-label[b-kyrg38gcjv] {
    color: #9ca3af;
    font-weight: 500;
    width: 150px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.alias-label i[b-kyrg38gcjv] {
    font-size: 12px;
    color: #d1d5db;
}

.alias-info[b-kyrg38gcjv] {
    color: #6b7280;
}

.alias-name[b-kyrg38gcjv] {
    display: inline-block;
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 500;
}

/* Details Button */
.btn-details[b-kyrg38gcjv] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 120px;
}

.btn-details:hover[b-kyrg38gcjv] {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(102, 126, 234, 0.4);
}

.btn-details:active[b-kyrg38gcjv] {
    transform: translateY(0);
}

.btn-details i[b-kyrg38gcjv] {
    font-size: 14px;
}

/* Empty States */
.empty-state[b-kyrg38gcjv] {
    text-align: center;
    padding: 60px 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.empty-content[b-kyrg38gcjv] {
    max-width: 400px;
    margin: 0 auto;
}

.empty-state i[b-kyrg38gcjv] {
    font-size: 64px;
    color: #d1d5db;
    margin-bottom: 20px;
    display: block;
}

.empty-message[b-kyrg38gcjv] {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 12px 0;
}

.empty-hint[b-kyrg38gcjv] {
    font-size: 14px;
    color: #9ca3af;
    margin: 0;
}

.no-results i[b-kyrg38gcjv] {
    color: #ef4444;
}

.no-results .empty-message[b-kyrg38gcjv] {
    color: #dc2626;
}

/* Scrollbar Styling */
.results-table-wrapper[b-kyrg38gcjv]::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.results-table-wrapper[b-kyrg38gcjv]::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.results-table-wrapper[b-kyrg38gcjv]::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.results-table-wrapper[b-kyrg38gcjv]::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .search-page[b-kyrg38gcjv] {
        padding: 0 15px;
    }

    .search-header[b-kyrg38gcjv] {
        padding: 30px 20px;
        margin-bottom: 20px;
        border-radius: 0 0 12px 12px;
    }

    .page-title[b-kyrg38gcjv] {
        font-size: 28px;
        gap: 10px;
    }

    .page-title i[b-kyrg38gcjv] {
        font-size: 32px;
    }

    .page-subtitle[b-kyrg38gcjv] {
        font-size: 14px;
    }

    .search-form-section[b-kyrg38gcjv] {
        padding: 20px;
        margin-bottom: 20px;
    }

    .results-section[b-kyrg38gcjv] {
        padding: 0 20px 30px 20px;
    }

    .results-title[b-kyrg38gcjv] {
        font-size: 20px;
    }

    .results-table[b-kyrg38gcjv] {
        font-size: 12px;
    }

    .results-table th[b-kyrg38gcjv] {
        padding: 12px;
        font-size: 12px;
    }

    .results-table td[b-kyrg38gcjv] {
        padding: 12px !important;
    }

    .action-column[b-kyrg38gcjv] {
        width: 100px;
    }

    .btn-details[b-kyrg38gcjv] {
        padding: 6px 12px;
        font-size: 12px;
        min-width: 90px;
    }

    .btn-details span[b-kyrg38gcjv] {
        display: none;
    }

    .alias-row td[b-kyrg38gcjv] {
        padding: 10px 12px;
        font-size: 12px;
    }

    .empty-state[b-kyrg38gcjv] {
        padding: 40px 20px;
    }

    .empty-state i[b-kyrg38gcjv] {
        font-size: 48px;
        margin-bottom: 15px;
    }

    .empty-message[b-kyrg38gcjv] {
        font-size: 16px;
    }

    .empty-hint[b-kyrg38gcjv] {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .search-page[b-kyrg38gcjv] {
        padding: 0;
    }

    .search-header[b-kyrg38gcjv] {
        padding: 25px 15px;
        margin-bottom: 15px;
        border-radius: 0;
    }

    .page-title[b-kyrg38gcjv] {
        font-size: 24px;
    }

    .page-title i[b-kyrg38gcjv] {
        font-size: 28px;
    }

    .search-form-section[b-kyrg38gcjv] {
        padding: 15px;
        margin-bottom: 15px;
        border-radius: 8px;
    }

    .results-section[b-kyrg38gcjv] {
        padding: 0 15px 20px 15px;
    }

    .results-title[b-kyrg38gcjv] {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .result-count[b-kyrg38gcjv] {
        display: block;
        margin-left: 0;
        margin-top: 8px;
    }

    .results-container[b-kyrg38gcjv] {
        border-radius: 8px;
    }

    .results-table-wrapper[b-kyrg38gcjv] {
        max-height: 500px;
    }

    .results-table th[b-kyrg38gcjv] {
        padding: 10px;
        font-size: 11px;
    }

    .results-table td[b-kyrg38gcjv] {
        padding: 10px !important;
    }

    .action-column[b-kyrg38gcjv] {
        width: 80px;
    }

    .person-row td[b-kyrg38gcjv] {
        display: block;
        width: 100%;
        padding: 12px 15px;
    }

    .alias-row td[b-kyrg38gcjv] {
        padding: 8px 15px;
    }

    .btn-details[b-kyrg38gcjv] {
        width: 100%;
        font-size: 12px;
        padding: 8px 10px;
    }

    .empty-state[b-kyrg38gcjv] {
        padding: 30px 15px;
    }

    .empty-state i[b-kyrg38gcjv] {
        font-size: 40px;
    }

    .empty-message[b-kyrg38gcjv] {
        font-size: 14px;
    }
}

/* Print Styles */
@media print {
    .search-header[b-kyrg38gcjv] {
        background: none;
        border: 2px solid #667eea;
        color: #1f2937;
    }

    .page-title[b-kyrg38gcjv],
    .page-subtitle[b-kyrg38gcjv] {
        color: #1f2937;
    }

    .btn-details[b-kyrg38gcjv] {
        display: none;
    }

    .empty-state[b-kyrg38gcjv] {
        display: none;
    }
}
/* /Pages_2/SearchPeople.razor.rz.scp.css */
/* Search Form Container */
.search-form-container[b-9t3vb5b5xe] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Form Header */
.search-form-header[b-9t3vb5b5xe] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 24px 28px;
}

.search-form-title[b-9t3vb5b5xe] {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.3px;
}

.search-form-title i[b-9t3vb5b5xe] {
    font-size: 20px;
}

.search-form-subtitle[b-9t3vb5b5xe] {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-weight: 400;
}

/* Form Body */
.search-form-body[b-9t3vb5b5xe] {
    padding: 28px;
}

/* Search Fields Grid */
.search-fields-grid[b-9t3vb5b5xe] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

/* Search Field */
.search-field[b-9t3vb5b5xe] {
    display: flex;
    flex-direction: column;
}

.search-label[b-9t3vb5b5xe] {
    font-size: 13px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-label i[b-9t3vb5b5xe] {
    font-size: 14px;
    color: #667eea;
    min-width: 16px;
}

/* Input Wrapper */
.input-wrapper[b-9t3vb5b5xe] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.search-input[b-9t3vb5b5xe] {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.2s ease;
    background: white;
    color: #1f2937;
    min-height: 40px;
}

.search-input[b-9t3vb5b5xe]::placeholder {
    color: #9ca3af;
    font-style: italic;
}

.search-input:focus[b-9t3vb5b5xe] {
    outline: none;
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.02);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.search-input:hover:not(:focus)[b-9t3vb5b5xe] {
    border-color: #d1d5db;
}

/* Special input sizes */
.year-input[b-9t3vb5b5xe] {
    max-width: 140px;
}

.range-input[b-9t3vb5b5xe] {
    max-width: 100px;
}

/* Input Hint */
.input-hint[b-9t3vb5b5xe] {
    font-size: 11px;
    color: #9ca3af;
    font-style: italic;
    margin-top: 2px;
    display: none;
}

.search-field:hover .input-hint[b-9t3vb5b5xe] {
    display: block;
}

/* Error Message */
.search-error-message[b-9t3vb5b5xe] {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    background: #fee2e2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    color: #991b1b;
    font-size: 13px;
    font-weight: 500;
    margin-top: 12px;
}

.search-error-message i[b-9t3vb5b5xe] {
    font-size: 16px;
    color: #dc2626;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Form Footer */
.search-form-footer[b-9t3vb5b5xe] {
    padding: 16px 28px 28px 28px;
    display: flex;
    gap: 12px;
}

.search-btn-primary[b-9t3vb5b5xe] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 28px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 140px;
}

.search-btn-primary:hover[b-9t3vb5b5xe] {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(102, 126, 234, 0.4);
}

.search-btn-primary:active[b-9t3vb5b5xe] {
    transform: translateY(0);
}

.search-btn-primary i[b-9t3vb5b5xe] {
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .search-form-header[b-9t3vb5b5xe] {
        padding: 20px 20px;
    }

    .search-form-title[b-9t3vb5b5xe] {
        font-size: 16px;
    }

    .search-form-body[b-9t3vb5b5xe] {
        padding: 20px;
    }

    .search-fields-grid[b-9t3vb5b5xe] {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 16px;
        margin-bottom: 16px;
    }

    .search-label[b-9t3vb5b5xe] {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .search-input[b-9t3vb5b5xe] {
        padding: 9px 10px;
        font-size: 13px;
        min-height: 36px;
    }

    .year-input[b-9t3vb5b5xe] {
        max-width: 120px;
    }

    .search-form-footer[b-9t3vb5b5xe] {
        padding: 12px 20px 20px 20px;
    }

    .search-btn-primary[b-9t3vb5b5xe] {
        padding: 10px 20px;
        font-size: 13px;
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .search-form-container[b-9t3vb5b5xe] {
        border-radius: 8px;
    }

    .search-form-header[b-9t3vb5b5xe] {
        padding: 16px 16px;
    }

    .search-form-title[b-9t3vb5b5xe] {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .search-form-subtitle[b-9t3vb5b5xe] {
        font-size: 12px;
    }

    .search-form-body[b-9t3vb5b5xe] {
        padding: 16px;
    }

    .search-fields-grid[b-9t3vb5b5xe] {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .search-label[b-9t3vb5b5xe] {
        font-size: 11px;
        margin-bottom: 6px;
    }

    .search-input[b-9t3vb5b5xe] {
        padding: 8px 10px;
        font-size: 12px;
        min-height: 34px;
    }

    .year-input[b-9t3vb5b5xe],
    .range-input[b-9t3vb5b5xe] {
        max-width: 100%;
    }

    .input-hint[b-9t3vb5b5xe] {
        font-size: 10px;
    }

    .search-error-message[b-9t3vb5b5xe] {
        padding: 10px 12px;
        font-size: 12px;
        gap: 8px;
    }

    .search-error-message i[b-9t3vb5b5xe] {
        font-size: 14px;
    }

    .search-form-footer[b-9t3vb5b5xe] {
        padding: 12px 16px 16px 16px;
        flex-direction: column;
    }

    .search-btn-primary[b-9t3vb5b5xe] {
        width: 100%;
        padding: 11px 16px;
        font-size: 13px;
        min-width: auto;
    }
}

/* Animations */
@keyframes errorShake-b-9t3vb5b5xe {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-4px);
    }
    75% {
        transform: translateX(4px);
    }
}

.search-error-message[b-9t3vb5b5xe] {
    animation: errorShake-b-9t3vb5b5xe 0.3s ease;
}

/* Print Styles */
@media print {
    .search-form-container[b-9t3vb5b5xe] {
        box-shadow: none;
        border: 1px solid #d1d5db;
    }

    .search-form-header[b-9t3vb5b5xe] {
        background: #f3f4f6;
        color: #1f2937;
    }

    .search-btn-primary[b-9t3vb5b5xe] {
        display: none;
    }
}
/* /Shared/LeftSidebar.razor.rz.scp.css */
/* /Shared/LoginLayout.razor.rz.scp.css */
.login-layout-container[b-mm3f2k0bxq] {
    display: flex;
    min-height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.login-layout-main[b-mm3f2k0bxq] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
/* /Shared/MainLayout.razor.rz.scp.css */
.page[b-45rkf8v3vv] {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100vh;
    background-color: #f5f5f5;
}

main[b-45rkf8v3vv] {
    flex: 1;
    overflow-y: auto;
}

.main-content[b-45rkf8v3vv] {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.fix[b-45rkf8v3vv] {
    min-width: max-content;
}

.sidebar[b-45rkf8v3vv] {
    background: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.top-row[b-45rkf8v3vv] {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

    .top-row[b-45rkf8v3vv]  a, .top-row .btn-link[b-45rkf8v3vv] {
        white-space: nowrap;
        margin-left: 1.5rem;
    }

    .top-row a:first-child[b-45rkf8v3vv] {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .page[b-45rkf8v3vv] {
        flex-direction: column;
    }

    .sidebar[b-45rkf8v3vv] {
        width: 100%;
        max-height: auto;
    }

    .top-row:not(.auth)[b-45rkf8v3vv] {
        display: none;
    }

    .top-row.auth[b-45rkf8v3vv] {
        justify-content: space-between;
    }

    .top-row a[b-45rkf8v3vv], .top-row .btn-link[b-45rkf8v3vv] {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-45rkf8v3vv] {
        flex-direction: row;
        height: 100vh;
    }

    .sidebar[b-45rkf8v3vv] {
        width: 230px;
        height: 100vh;
        position: sticky;
        top: 0;
        overflow-y: auto;
    }

    .main-content[b-45rkf8v3vv] {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .top-row[b-45rkf8v3vv] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row[b-45rkf8v3vv], article[b-45rkf8v3vv] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

/* /Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-b5wscdn8ts] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-b5wscdn8ts] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-b5wscdn8ts] {
    font-size: 1.1rem;
}

.oi[b-b5wscdn8ts] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-b5wscdn8ts] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-b5wscdn8ts] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-b5wscdn8ts] {
        padding-bottom: 1rem;
    }

    .nav-item[b-b5wscdn8ts]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-b5wscdn8ts]  a.active {
    background-color: rgba(255,255,255,0.25);
    color: white;
}

.nav-item[b-b5wscdn8ts]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-b5wscdn8ts] {
        display: none;
    }

    .collapse[b-b5wscdn8ts] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
}
