/* /Pages/DocumentConfig.razor.rz.scp.css */
/* DocumentConfig — UI Refresh (matches PackageConfig layout) */

/* ── Top & Bottom Navbars ─────────────────────────────── */
.config-navbar[b-l27fxekutk] {
    position: fixed;
    width: 100%;
    z-index: 999;
    padding: 0 24px;
    height: 56px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.config-navbar-top[b-l27fxekutk] {
    top: 0;
    justify-content: center;
}

.config-navbar-bottom[b-l27fxekutk] {
    bottom: 0;
    justify-content: flex-end;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.15);
}

.config-navbar-bottom .skeleton-bar[b-l27fxekutk] {
    margin-bottom: 0;
    vertical-align: middle;
}

.config-navbar .navbar-title[b-l27fxekutk] {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: rgba(255, 255, 255, 0.95);
}

.config-navbar .breadcrumb-link[b-l27fxekutk] {
    cursor: pointer;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.15s ease;
}

.config-navbar .breadcrumb-link:hover[b-l27fxekutk] {
    color: rgba(255, 255, 255, 0.9);
}

.config-navbar .breadcrumb-sep[b-l27fxekutk] {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
    margin: 0 10px;
}

.config-navbar .btn-close-config[b-l27fxekutk] {
    position: absolute;
    right: 16px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 20px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.15s ease;
    cursor: pointer;
}

.config-navbar .btn-close-config:hover[b-l27fxekutk] {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.config-navbar .btn-save[b-l27fxekutk] {
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 6px;
    border: none;
    transition: all 0.15s ease;
    letter-spacing: 0.2px;
}

.config-navbar .btn-save-primary[b-l27fxekutk] {
    background: #22c55e;
    color: white;
}

.config-navbar .btn-save-primary:hover[b-l27fxekutk] {
    background: #16a34a;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
}

.config-navbar .btn-save-secondary[b-l27fxekutk] {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.config-navbar .btn-save-secondary:hover[b-l27fxekutk] {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

/* ── Main Content Area ──────────────────────────────────── */
.config-content[b-l27fxekutk] {
    height: calc(100% - 112px);
    margin-top: 56px;
    padding: 0 !important;
    overflow: hidden;
}

.config-columns[b-l27fxekutk] {
    display: flex;
    height: 100%;
}

/* ── Side Panels (Left & Right) ─────────────────────────── */
.config-panel[b-l27fxekutk] {
    width: 280px;
    min-width: 280px;
    padding: 20px;
    overflow-y: auto;
    background: #fafafa;
    border-right: 1px solid #e8e8e8;
}

.config-panel-right[b-l27fxekutk] {
    border-right: none;
    border-left: 1px solid #e8e8e8;
}

.config-panel .panel-description[b-l27fxekutk] {
    font-size: 13px;
    color: #9ca3af;
    line-height: 1.5;
    margin-bottom: 16px;
}

/* ── Card Sections ──────────────────────────────────────── */
.config-card[b-l27fxekutk] {
    background: white;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    padding: 16px;
    margin-bottom: 16px;
    transition: box-shadow 0.15s ease;
}

.config-card:hover[b-l27fxekutk] {
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.card-label[b-l27fxekutk] {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #9ca3af;
    margin-bottom: 10px;
}

/* ── Template List Items ─────────────────────────────── */
.template-item[b-l27fxekutk] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    margin-bottom: 4px;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    background: white;
    cursor: pointer;
    transition: all 0.15s ease;
}

.template-item:hover[b-l27fxekutk] {
    background: #f9fafb;
    border-color: #d1d5db;
}

.template-item.active[b-l27fxekutk] {
    background: #1b6ec2;
    color: white;
    border-color: #1b6ec2;
}

.template-item.active .template-item-name[b-l27fxekutk] {
    color: white;
}

.template-item-main[b-l27fxekutk] {
    display: flex;
    align-items: center;
    min-width: 0;
    flex: 1;
}

.template-item-name[b-l27fxekutk] {
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #374151;
}

.template-item-actions[b-l27fxekutk] {
    display: flex;
    align-items: center;
    margin-left: 8px;
    flex-shrink: 0;
}

.template-edit-btn[b-l27fxekutk] {
    padding: 2px 6px;
    font-size: 12px;
    border-radius: 4px;
}

/* ── Center Panel (PDF Viewer) ──────────────────────────── */
.config-center[b-l27fxekutk] {
    flex: 1;
    min-width: 0;
    position: relative;
    background: white;
    display: flex;
    flex-direction: column;
}

.pdf-viewer-wrap[b-l27fxekutk] {
    flex: 1;
    min-height: 0;
    position: relative;
    overflow: hidden;
}

/* ── Signing Order Section ──────────────────────────── */
.signing-order-section[b-l27fxekutk] {
    margin-top: 16px;
}

.signing-order-section .order-description[b-l27fxekutk] {
    font-size: 12px;
    color: #9ca3af;
    line-height: 1.5;
    margin-bottom: 10px;
}

.signing-order-section .order-label[b-l27fxekutk] {
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 6px;
}

.signing-order-section .btn-order-dropdown[b-l27fxekutk] {
    width: 100%;
    text-align: left;
    padding: 8px 12px;
    font-size: 13px;
    background: white;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    color: #374151;
}

.signing-order-section .btn-order-dropdown[b-l27fxekutk]::after {
    float: right;
    margin-top: 8px;
    opacity: 0.5;
}

/* ── Skeleton Loading ───────────────────────────────── */
.skeleton-loader[b-l27fxekutk] {
    visibility: visible !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    inset: 0;
    background: #fafafa;
    z-index: 10;
}

.skeleton-bar[b-l27fxekutk] {
    height: 12px;
    background: linear-gradient(90deg, #e5e7eb 25%, #f3f4f6 50%, #e5e7eb 75%);
    background-size: 200% 100%;
    animation: shimmer-b-l27fxekutk 1.5s ease-in-out infinite;
    border-radius: 4px;
    margin-bottom: 12px;
}

.skeleton-block[b-l27fxekutk] {
    width: 80%;
    max-width: 500px;
    padding: 24px;
}

.skeleton-block .skeleton-bar:nth-child(1)[b-l27fxekutk] { width: 100%; height: 200px; border-radius: 8px; }
.skeleton-block .skeleton-bar:nth-child(2)[b-l27fxekutk] { width: 60%; margin-top: 16px; }
.skeleton-block .skeleton-bar:nth-child(3)[b-l27fxekutk] { width: 45%; }
.skeleton-block .skeleton-bar:nth-child(4)[b-l27fxekutk] { width: 70%; }

@keyframes shimmer-b-l27fxekutk {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.skeleton-text[b-l27fxekutk] {
    margin-top: 16px;
    font-size: 13px;
    color: #9ca3af;
}

/* ── Panel Skeleton Placeholders ──────────────────── */
.panel-skeleton[b-l27fxekutk] {
    padding: 0;
}

.skeleton-card[b-l27fxekutk] {
    background: white;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    padding: 16px;
    margin-bottom: 16px;
}

.skeleton-doc-item[b-l27fxekutk] {
    height: 44px;
    background: linear-gradient(90deg, #e5e7eb 25%, #f3f4f6 50%, #e5e7eb 75%);
    background-size: 200% 100%;
    animation: shimmer-b-l27fxekutk 1.5s ease-in-out infinite;
    border-radius: 6px;
    margin-bottom: 4px;
}

/* ── Dialog Polish ──────────────────────────────────── */
[b-l27fxekutk] .e-dlg-header {
    font-size: 16px;
    font-weight: 600;
}

[b-l27fxekutk] .e-dialog .e-footer-content {
    padding: 12px 16px;
}

[b-l27fxekutk] .e-dialog .e-btn {
    border-radius: 6px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.15s ease;
}

/* ── Micro-animations ──────────────────────────────── */
.btn-save:active[b-l27fxekutk] {
    transform: scale(0.97);
}
/* /Pages/PackageConfig.razor.rz.scp.css */
/* PackageConfig — UI Refresh */

/* ── Top & Bottom Navbars ─────────────────────────────── */
.config-navbar[b-aao89h94eg] {
    position: fixed;
    width: 100%;
    z-index: 999;
    padding: 0 24px;
    height: 56px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.config-navbar-top[b-aao89h94eg] {
    top: 0;
    justify-content: center;
}

.config-navbar-bottom[b-aao89h94eg] {
    bottom: 0;
    justify-content: flex-end;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.15);
}

.config-navbar-bottom .skeleton-bar[b-aao89h94eg] {
    margin-bottom: 0;
    vertical-align: middle;
}

.config-navbar .navbar-title[b-aao89h94eg] {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: rgba(255, 255, 255, 0.95);
}

.config-navbar .btn-close-config[b-aao89h94eg] {
    position: absolute;
    right: 16px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 20px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.15s ease;
    cursor: pointer;
}

.config-navbar .btn-close-config:hover[b-aao89h94eg] {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.config-navbar .btn-save[b-aao89h94eg] {
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 6px;
    border: none;
    transition: all 0.15s ease;
    letter-spacing: 0.2px;
}

.config-navbar .btn-save-primary[b-aao89h94eg] {
    background: #22c55e;
    color: white;
}

.config-navbar .btn-save-primary:hover[b-aao89h94eg] {
    background: #16a34a;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
}

.config-navbar .btn-save-secondary[b-aao89h94eg] {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.config-navbar .btn-save-secondary:hover[b-aao89h94eg] {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

/* ── Main Content Area ──────────────────────────────────── */
.config-content[b-aao89h94eg] {
    height: calc(100% - 112px);
    margin-top: 56px;
    padding: 0 !important;
    overflow: hidden;
}

.config-columns[b-aao89h94eg] {
    display: flex;
    height: 100%;
}

/* ── Side Panels (Left & Right) ─────────────────────────── */
.config-panel[b-aao89h94eg] {
    width: 280px;
    min-width: 280px;
    padding: 20px;
    overflow-y: auto;
    background: #fafafa;
    border-right: 1px solid #e8e8e8;
}

.config-panel-right[b-aao89h94eg] {
    border-right: none;
    border-left: 1px solid #e8e8e8;
}

.config-panel .panel-heading[b-aao89h94eg] {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #6b7280;
    margin-bottom: 12px;
}

.config-panel .panel-description[b-aao89h94eg] {
    font-size: 13px;
    color: #9ca3af;
    line-height: 1.5;
    margin-bottom: 16px;
}

/* ── Card Sections ──────────────────────────────────────── */
.config-card[b-aao89h94eg] {
    background: white;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    padding: 16px;
    margin-bottom: 16px;
    transition: box-shadow 0.15s ease;
}

.config-card:hover[b-aao89h94eg] {
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.config-card .card-label[b-aao89h94eg] {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #9ca3af;
    margin-bottom: 10px;
}

/* ── Document List Items ─────────────────────────────── */
.doc-list[b-aao89h94eg] {
    max-height: calc(100vh - 320px);
    overflow-y: auto;
}

.doc-item[b-aao89h94eg] {
    display: flex;
    align-items: center;
    margin-bottom: 4px;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.15s ease;
}

.doc-item .doc-drag[b-aao89h94eg] {
    width: 28px;
    height: 44px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    cursor: grab;
    border: 1px solid #e5e7eb;
    border-right: none;
    border-radius: 6px 0 0 6px;
}

.doc-item .doc-drag:active[b-aao89h94eg] {
    cursor: grabbing;
}

.doc-item .doc-drag img[b-aao89h94eg] {
    width: 16px;
    height: auto;
    opacity: 0.4;
}

.doc-item .doc-button[b-aao89h94eg] {
    flex: 1;
    min-width: 0;
    padding: 10px 12px;
    font-size: 13px;
    font-weight: 400;
    border: 1px solid #e5e7eb;
    border-left: none;
    border-radius: 0 6px 6px 0;
    background: white;
    color: #374151;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.15s ease;
    cursor: pointer;
}

.doc-item .doc-button:hover[b-aao89h94eg] {
    background: #f9fafb;
    border-color: #d1d5db;
}

.doc-item .doc-button.active[b-aao89h94eg] {
    background: #1b6ec2;
    color: white;
    border-color: #1b6ec2;
    border-left: 3px solid #0d47a1;
    font-weight: 500;
}

.doc-item .doc-button.active + .doc-drag[b-aao89h94eg],
.doc-item .doc-button.active ~ .doc-drag[b-aao89h94eg] {
    border-color: #1b6ec2;
}

.doc-item .doc-button i[b-aao89h94eg] {
    margin-right: 8px;
    opacity: 0.6;
}

.doc-item .doc-button.active i[b-aao89h94eg] {
    opacity: 1;
}

/* ── Center Panel (PDF Viewer) ──────────────────────────── */
.config-center[b-aao89h94eg] {
    flex: 1;
    min-width: 0;
    position: relative;
    background: white;
    display: flex;
    flex-direction: column;
}

.pdf-viewer-wrap[b-aao89h94eg] {
    flex: 1;
    min-height: 0;
    position: relative;
    overflow: hidden;
}

/* ── Empty State ─────────────────────────────────────── */
.config-empty-state[b-aao89h94eg] {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: #fafafa;
}

.config-empty-state .empty-inner[b-aao89h94eg] {
    text-align: center;
    padding: 40px;
}

.config-empty-state .empty-icon[b-aao89h94eg] {
    font-size: 56px;
    color: #d1d5db;
    margin-bottom: 16px;
}

.config-empty-state .empty-title[b-aao89h94eg] {
    font-size: 16px;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 8px;
}

.config-empty-state .empty-description[b-aao89h94eg] {
    font-size: 13px;
    color: #9ca3af;
}


/* ── Template Dropdown ──────────────────────────────── */
.template-select .btn-template-dropdown[b-aao89h94eg] {
    width: 100%;
    text-align: left;
    padding: 8px 12px;
    font-size: 13px;
    background: white;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    color: #374151;
    transition: all 0.15s ease;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.template-select .btn-template-dropdown:hover[b-aao89h94eg] {
    border-color: #9ca3af;
}

.template-select .btn-template-dropdown[b-aao89h94eg]::after {
    float: right;
    margin-top: 8px;
    opacity: 0.5;
}

.template-select .dropdown-menu[b-aao89h94eg] {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    padding: 4px;
}

.template-select .dropdown-item[b-aao89h94eg] {
    padding: 8px 12px;
    font-size: 13px;
    border-radius: 4px;
    color: #374151;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.template-select .dropdown-item:hover[b-aao89h94eg] {
    background: #f3f4f6;
}

.template-select .dropdown-item.active[b-aao89h94eg] {
    background: #1b6ec2;
    color: white;
}

/* ── Signing Order Section ──────────────────────────── */
.signing-order-section[b-aao89h94eg] {
    margin-top: 16px;
}

.signing-order-section .order-description[b-aao89h94eg] {
    font-size: 12px;
    color: #9ca3af;
    line-height: 1.5;
    margin-bottom: 10px;
}

.signing-order-section .order-label[b-aao89h94eg] {
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 6px;
}

.signing-order-section .btn-order-dropdown[b-aao89h94eg] {
    width: 100%;
    text-align: left;
    padding: 8px 12px;
    font-size: 13px;
    background: white;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    color: #374151;
}

.signing-order-section .btn-order-dropdown[b-aao89h94eg]::after {
    float: right;
    margin-top: 8px;
    opacity: 0.5;
}

.signing-order-section .alert[b-aao89h94eg] {
    font-size: 12px;
    padding: 10px 12px;
    border-radius: 6px;
    margin-top: 10px;
}

/* ── Skeleton Loading ───────────────────────────────── */
.skeleton-loader[b-aao89h94eg] {
    visibility: visible !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    inset: 0;
    background: #fafafa;
    z-index: 10;
}

.skeleton-bar[b-aao89h94eg] {
    height: 12px;
    background: linear-gradient(90deg, #e5e7eb 25%, #f3f4f6 50%, #e5e7eb 75%);
    background-size: 200% 100%;
    animation: shimmer-b-aao89h94eg 1.5s ease-in-out infinite;
    border-radius: 4px;
    margin-bottom: 12px;
}

.skeleton-block[b-aao89h94eg] {
    width: 80%;
    max-width: 500px;
    padding: 24px;
}

.skeleton-block .skeleton-bar:nth-child(1)[b-aao89h94eg] { width: 100%; height: 200px; border-radius: 8px; }
.skeleton-block .skeleton-bar:nth-child(2)[b-aao89h94eg] { width: 60%; margin-top: 16px; }
.skeleton-block .skeleton-bar:nth-child(3)[b-aao89h94eg] { width: 45%; }
.skeleton-block .skeleton-bar:nth-child(4)[b-aao89h94eg] { width: 70%; }

@keyframes shimmer-b-aao89h94eg {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.skeleton-text[b-aao89h94eg] {
    margin-top: 16px;
    font-size: 13px;
    color: #9ca3af;
}

/* ── Panel Skeleton Placeholders ──────────────────── */
.panel-skeleton[b-aao89h94eg] {
    padding: 0;
}

.skeleton-card[b-aao89h94eg] {
    background: white;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    padding: 16px;
    margin-bottom: 16px;
}

.skeleton-doc-item[b-aao89h94eg] {
    height: 44px;
    background: linear-gradient(90deg, #e5e7eb 25%, #f3f4f6 50%, #e5e7eb 75%);
    background-size: 200% 100%;
    animation: shimmer-b-aao89h94eg 1.5s ease-in-out infinite;
    border-radius: 6px;
    margin-bottom: 4px;
}

/* ── Dialog Polish ──────────────────────────────────── */
[b-aao89h94eg] .e-dlg-header {
    font-size: 16px;
    font-weight: 600;
}

[b-aao89h94eg] .e-dialog .e-footer-content {
    padding: 12px 16px;
}

[b-aao89h94eg] .e-dialog .e-btn {
    border-radius: 6px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.15s ease;
}

/* ── Micro-animations ──────────────────────────────── */
.btn-save:active[b-aao89h94eg] {
    transform: scale(0.97);
}
/* /Pages/ProcessPackage.razor.rz.scp.css */
/* ProcessPackage — Sign Flow UI */

/* ── Content Area ──────────────────────────────────── */
.sign-content[b-kyawq5o1zy] {
    height: calc(100dvh - 112px);
    margin-top: 56px;
    padding: 0;
    overflow: hidden;
}

.sign-columns[b-kyawq5o1zy] {
    display: flex;
    height: 100%;
}

/* ── Left Panel ────────────────────────────────────── */
.sign-panel[b-kyawq5o1zy] {
    width: 280px;
    min-width: 280px;
    padding: 20px;
    overflow-y: auto;
    background: #fafafa;
    border-right: 1px solid #e8e8e8;
}

.sign-welcome-card[b-kyawq5o1zy] {
    background: white;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    padding: 16px;
    margin-bottom: 16px;
}

.sign-welcome-heading[b-kyawq5o1zy] {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 8px 0;
}

.sign-instructions[b-kyawq5o1zy] {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

.sign-panel-heading[b-kyawq5o1zy] {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #6b7280;
    margin-bottom: 12px;
}

/* ── Document List ─────────────────────────────────── */
.sign-doc-item[b-kyawq5o1zy] {
    margin-bottom: 4px;
}

.sign-doc-button[b-kyawq5o1zy] {
    display: block;
    width: 100%;
    padding: 10px 12px;
    font-size: 13px;
    font-weight: 400;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    background: white;
    color: #374151;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    transition: all 0.15s ease;
}

.sign-doc-button:hover[b-kyawq5o1zy] {
    background: #f9fafb;
    border-color: #d1d5db;
}

.sign-doc-button.active[b-kyawq5o1zy] {
    background: #1b6ec2;
    color: white;
    border-color: #1b6ec2;
    border-left: 3px solid #0d47a1;
    font-weight: 500;
}

.sign-doc-button:disabled[b-kyawq5o1zy] {
    opacity: 0.5;
    cursor: not-allowed;
}

.sign-doc-button i[b-kyawq5o1zy] {
    margin-right: 8px;
    opacity: 0.6;
}

.sign-doc-button.active i[b-kyawq5o1zy] {
    opacity: 1;
}

/* ── Center Panel (PDF Viewer) ─────────────────────── */
.sign-center[b-kyawq5o1zy] {
    flex: 1;
    min-width: 0;
    position: relative;
    background: white;
    display: flex;
    flex-direction: column;
}

.sign-pdf-wrap[b-kyawq5o1zy] {
    flex: 1;
    min-height: 0;
    position: relative;
    overflow: hidden;
}

/* ── Bottom Navbar Extras ──────────────────────────── */
.sign-nav-left[b-kyawq5o1zy] {
    display: flex;
    align-items: center;
}

.sign-status-message[b-kyawq5o1zy] {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── Action Button ─────────────────────────────────── */
.btn-sign[b-kyawq5o1zy] {
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 6px;
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.15s ease;
    letter-spacing: 0.2px;
}

.btn-sign-info[b-kyawq5o1zy] {
    background: #2563eb;
}

.btn-sign-info:hover[b-kyawq5o1zy] {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.btn-sign-success[b-kyawq5o1zy] {
    background: #22c55e;
}

.btn-sign-success:hover[b-kyawq5o1zy] {
    background: #16a34a;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
}

.btn-sign:disabled[b-kyawq5o1zy] {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.btn-sign:active[b-kyawq5o1zy] {
    transform: scale(0.97);
}

/* ── Annotation Canvas Fix ─────────────────────────── */
/* Text layer (z-index:2) sits above annotation canvas (z-index:1),
   blocking click events on stamp annotations. Raise annotation canvas above text layer. */
[b-kyawq5o1zy] .e-pv-annotation-canvas {
    z-index: 3 !important;
}

/* ── Busy State ────────────────────────────────────── */
.busy[b-kyawq5o1zy] {
    opacity: 0.6;
}

/* ── Mobile Responsive ─────────────────────────────── */
@media (max-width: 767.98px) {
    .sign-content[b-kyawq5o1zy] {
        /* Use dvh to account for mobile browser chrome (address bar, toolbar) */
        height: calc(100dvh - 112px);
    }

    .sign-panel[b-kyawq5o1zy] {
        width: 100%;
        min-width: unset;
        max-height: 140px;
        border-right: none;
        border-bottom: 1px solid #e8e8e8;
        padding: 12px;
    }

    .sign-columns[b-kyawq5o1zy] {
        flex-direction: column;
    }

    .sign-welcome-card[b-kyawq5o1zy] {
        display: none;
    }

    .sign-panel-heading[b-kyawq5o1zy] {
        margin-bottom: 6px;
    }

    .btn-sign[b-kyawq5o1zy] {
        padding: 10px 16px;
        font-size: 14px;
    }
}
/* /Shared/CareSignLoader.razor.rz.scp.css */
/* CareSignLoader — Modern Loading Screen */

.sign-loading[b-6hql8pdfgh] {
    position: fixed;
    inset: 0;
    z-index: 999999999;
    background: #fafafa;
}

.sign-loading-body[b-6hql8pdfgh] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: calc(100% - 56px);
    margin-top: 56px;
}

.sign-loading-logo[b-6hql8pdfgh] {
    width: 200px;
    max-width: 60%;
    margin-bottom: 32px;
}

.sign-loading-skeleton[b-6hql8pdfgh] {
    width: 80%;
    max-width: 500px;
    padding: 24px;
}

.sign-loading-text[b-6hql8pdfgh] {
    margin-top: 16px;
    font-size: 13px;
    color: #9ca3af;
}
/* /Shared/DigitalConsent.razor.rz.scp.css */
/* DigitalConsent — Modern Consent Screen */

.consent-page[b-kkw8oh36ho] {
    min-height: 100vh;
    background: #f5f5f5;
}

.consent-body[b-kkw8oh36ho] {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 56px);
    margin-top: 56px;
    padding: 24px;
}

.consent-card[b-kkw8oh36ho] {
    max-width: 640px;
    width: 100%;
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    padding: 40px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.consent-logo[b-kkw8oh36ho] {
    width: 200px;
    max-width: 60%;
    margin-bottom: 24px;
}

.consent-heading[b-kkw8oh36ho] {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 16px;
}

.consent-text[b-kkw8oh36ho] {
    font-size: 13px;
    color: #374151;
    line-height: 1.7;
    text-align: justify;
    margin-bottom: 24px;
}

.consent-actions[b-kkw8oh36ho] {
    margin-bottom: 32px;
}

.btn-consent-accept[b-kkw8oh36ho] {
    padding: 12px 32px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 8px;
    border: none;
    background: #22c55e;
    color: white;
    cursor: pointer;
    transition: all 0.15s ease;
}

.btn-consent-accept:hover[b-kkw8oh36ho] {
    background: #16a34a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.btn-consent-accept:active[b-kkw8oh36ho] {
    transform: scale(0.97);
}

.consent-optout[b-kkw8oh36ho] {
    border-top: 1px solid #e5e7eb;
    padding-top: 20px;
}

.consent-optout-text[b-kkw8oh36ho] {
    font-size: 12px;
    color: #9ca3af;
    margin-bottom: 8px;
}

.btn-consent-optout[b-kkw8oh36ho] {
    background: none;
    border: none;
    color: #6b7280;
    font-size: 13px;
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.15s ease;
}

.btn-consent-optout:hover[b-kkw8oh36ho] {
    color: #374151;
}

@media (max-width: 767.98px) {
    .consent-card[b-kkw8oh36ho] {
        padding: 24px;
    }
}
/* /Shared/SignatureSelection.razor.rz.scp.css */
/* SignatureSelection — Modern Signature Picker */

.sigselect-page[b-hbbvccvub9] {
    min-height: 100vh;
    background: #f5f5f5;
}

.sigselect-body[b-hbbvccvub9] {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 56px);
    margin-top: 56px;
    padding: 24px;
}

.sigselect-card[b-hbbvccvub9] {
    max-width: 700px;
    width: 100%;
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    padding: 40px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.sigselect-logo[b-hbbvccvub9] {
    width: 200px;
    max-width: 60%;
    margin-bottom: 16px;
}

.sigselect-heading[b-hbbvccvub9] {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.sigselect-description[b-hbbvccvub9] {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 24px;
}

.sigselect-options[b-hbbvccvub9] {
    text-align: left;
}

.sigselect-option[b-hbbvccvub9] {
    display: flex;
    gap: 24px;
    padding: 16px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.15s ease;
    background: white;
}

.sigselect-option:hover[b-hbbvccvub9] {
    border-color: #2563eb;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.15);
    transform: translateY(-1px);
}

.sigselect-option:active[b-hbbvccvub9] {
    transform: scale(0.99);
}

.sigselect-col[b-hbbvccvub9] {
    flex: 1;
    min-width: 0;
}

.sigselect-label[b-hbbvccvub9] {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #9ca3af;
    margin-bottom: 6px;
}

.sigselect-img[b-hbbvccvub9] {
    max-height: 60px;
    max-width: 100%;
}

.sigselect-disclaimer[b-hbbvccvub9] {
    font-size: 12px;
    color: #9ca3af;
    line-height: 1.6;
    margin-top: 20px;
    text-align: center;
}

@media (max-width: 767.98px) {
    .sigselect-card[b-hbbvccvub9] {
        padding: 24px;
    }

    .sigselect-option[b-hbbvccvub9] {
        flex-direction: column;
        gap: 12px;
    }
}
/* /Shared/VerificationContainer.razor.rz.scp.css */
/* Styles moved to site.css — shared across ThankYou.razor and VerificationContainer.razor */
