/* /Pages/Index.razor.rz.scp.css */
/* Kiosk Container */
.kiosk-container[b-3vgvunhozg] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
}

/* Welcome Screen */
.welcome-screen[b-3vgvunhozg] {
    background: white;
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 100%;
}

.welcome-screen h1[b-3vgvunhozg] {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}

.subtitle[b-3vgvunhozg] {
    color: #666;
    font-size: 18px;
    margin-bottom: 30px;
}

/* Check-in Form */
.checkin-form[b-3vgvunhozg] {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.checkin-form h1[b-3vgvunhozg] {
    font-size: 28px;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

/* Form Layout - NO OVERLAP */
.form-row[b-3vgvunhozg] {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .form-row[b-3vgvunhozg] {
        flex-direction: row;
        gap: 20px;
    }
    
    .form-row .form-group[b-3vgvunhozg] {
        flex: 1;
        min-width: 0;
    }
}

.form-group[b-3vgvunhozg] {
    display: flex;
    flex-direction: column;
    min-width: 0;
    width: 100%;
    margin-bottom: 20px;
}

.form-group label[b-3vgvunhozg] {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

.form-control[b-3vgvunhozg] {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
    box-sizing: border-box;
    font-family: inherit;
}

.form-control:focus[b-3vgvunhozg] {
    outline: none;
    border-color: #667eea;
}

textarea.form-control[b-3vgvunhozg] {
    resize: vertical;
    min-height: 100px;
}

/* Alert */
.alert[b-3vgvunhozg] {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.alert-danger[b-3vgvunhozg] {
    background: #fee;
    border: 1px solid #fcc;
    color: #c33;
}

/* Severity Buttons */
.severity-buttons[b-3vgvunhozg] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 8px;
}

@media (min-width: 768px) {
    .severity-buttons[b-3vgvunhozg] {
        grid-template-columns: repeat(4, 1fr);
    }
}

.severity-btn[b-3vgvunhozg] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    background: white;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.severity-btn:hover[b-3vgvunhozg] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.severity-btn i[b-3vgvunhozg] {
    font-size: 32px;
}

.severity-btn.active[b-3vgvunhozg] {
    border-width: 3px;
}

.severity-btn.severity-1.active[b-3vgvunhozg] {
    border-color: #dc3545;
    background: #fff5f5;
}

.severity-btn.severity-2.active[b-3vgvunhozg] {
    border-color: #ffc107;
    background: #fffbf0;
}

.severity-btn.severity-3.active[b-3vgvunhozg] {
    border-color: #17a2b8;
    background: #f0f9ff;
}

.severity-btn.severity-4.active[b-3vgvunhozg] {
    border-color: #28a745;
    background: #f0fff4;
}

/* Action Buttons */
.action-buttons[b-3vgvunhozg] {
    display: flex;
    gap: 12px;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

@media (max-width: 480px) {
    .action-buttons[b-3vgvunhozg] {
        flex-direction: column;
    }
}

.btn[b-3vgvunhozg] {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: inherit;
}

.btn:disabled[b-3vgvunhozg] {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-primary[b-3vgvunhozg] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover:not(:disabled)[b-3vgvunhozg] {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4);
}

.btn-secondary[b-3vgvunhozg] {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover:not(:disabled)[b-3vgvunhozg] {
    background: #5a6268;
}

.btn-large[b-3vgvunhozg] {
    padding: 16px 32px;
    font-size: 18px;
}

/* Completion Screen */
.completion-screen[b-3vgvunhozg] {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.success-icon[b-3vgvunhozg] {
    margin-bottom: 20px;
}

.completion-screen h1[b-3vgvunhozg] {
    font-size: 32px;
    color: #28a745;
    margin-bottom: 10px;
}

.qr-code-section[b-3vgvunhozg] {
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.qr-code-section h2[b-3vgvunhozg] {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.qr-code-section p[b-3vgvunhozg] {
    color: #666;
    margin-bottom: 20px;
}

.qr-code[b-3vgvunhozg] {
    max-width: 200px;
    height: auto;
    border: 4px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.or-divider[b-3vgvunhozg] {
    margin: 20px 0;
    color: #999;
    font-size: 14px;
}

.url-box[b-3vgvunhozg] {
    background: white;
    padding: 12px;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    word-break: break-all;
}

.url-box a[b-3vgvunhozg] {
    color: #667eea;
    text-decoration: none;
}

.url-box a:hover[b-3vgvunhozg] {
    text-decoration: underline;
}

.next-steps[b-3vgvunhozg] {
    margin: 30px 0;
    text-align: left;
}

.next-steps h3[b-3vgvunhozg] {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.next-steps ul[b-3vgvunhozg] {
    list-style: none;
    padding: 0;
}

.next-steps li[b-3vgvunhozg] {
    padding: 8px 0 8px 28px;
    position: relative;
    color: #555;
}

.next-steps li[b-3vgvunhozg]:before {
    content: "?";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 18px;
}

/* Spinner */
.spinner-border[b-3vgvunhozg] {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border-b-3vgvunhozg 0.75s linear infinite;
}

.spinner-border-sm[b-3vgvunhozg] {
    width: 0.875rem;
    height: 0.875rem;
}

@keyframes spinner-border-b-3vgvunhozg {
    to { transform: rotate(360deg); }
}

/* Utility Classes */
.me-2[b-3vgvunhozg] {
    margin-right: 0.5rem;
}

.text-danger[b-3vgvunhozg] {
    color: #dc3545;
}

.text-warning[b-3vgvunhozg] {
    color: #ffc107;
}

.text-info[b-3vgvunhozg] {
    color: #17a2b8;
}

.text-success[b-3vgvunhozg] {
    color: #28a745;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .checkin-form[b-3vgvunhozg] {
        padding: 30px 20px;
    }
    
    .welcome-screen[b-3vgvunhozg] {
        padding: 40px 30px;
    }
    
    .completion-screen[b-3vgvunhozg] {
        padding: 30px 20px;
    }
}
/* /Pages/WaitingRoom.razor.rz.scp.css */
/* ?? Waiting Room Airport-Style Display ????????????????????????? */

.display-container[b-rfuxhf3k3d] {
    min-height: 100vh;
    background: #0a1628;
    color: #e8edf5;
    font-family: 'Segoe UI', system-ui, sans-serif;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.display-loading[b-rfuxhf3k3d] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: #8899b0;
}

/* Header */
.display-header[b-rfuxhf3k3d] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #0f2040 0%, #162d50 100%);
    border-bottom: 3px solid #c9a961;
}

.header-left[b-rfuxhf3k3d] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-left i[b-rfuxhf3k3d] {
    font-size: 2.5rem;
    color: #c9a961;
}

.header-left h1[b-rfuxhf3k3d] {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
}

.header-right[b-rfuxhf3k3d] {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header-stat[b-rfuxhf3k3d] {
    text-align: center;
}

.stat-value[b-rfuxhf3k3d] {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #c9a961;
    line-height: 1.1;
}

.stat-value small[b-rfuxhf3k3d] {
    font-size: 0.6em;
    opacity: 0.8;
}

.stat-label[b-rfuxhf3k3d] {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #8899b0;
}

.header-clock[b-rfuxhf3k3d] {
    font-size: 2.2rem;
    font-weight: 300;
    color: #ffffff;
    font-variant-numeric: tabular-nums;
    min-width: 130px;
    text-align: right;
}

/* Body */
.display-body[b-rfuxhf3k3d] {
    flex: 1;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    overflow: hidden;
}

.board-header[b-rfuxhf3k3d] {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.75rem 1rem;
    background: rgba(201, 169, 97, 0.15);
    border-bottom: 2px solid rgba(201, 169, 97, 0.3);
    color: #c9a961;
}

.board-header i[b-rfuxhf3k3d] {
    margin-right: 0.5rem;
}

/* Patient Board Table */
.display-board[b-rfuxhf3k3d] {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.board-table[b-rfuxhf3k3d] {
    width: 100%;
    border-collapse: collapse;
    flex: 1;
}

.board-table thead th[b-rfuxhf3k3d] {
    padding: 0.75rem 1rem;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    color: #8899b0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
}

.board-table tbody tr[b-rfuxhf3k3d] {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: background 0.3s;
}

.board-table tbody tr:hover[b-rfuxhf3k3d] {
    background: rgba(255, 255, 255, 0.03);
}

.patient-initials[b-rfuxhf3k3d] {
    font-size: 1.3rem;
    font-weight: 700;
    padding: 0.75rem 1rem;
    letter-spacing: 0.05em;
}

.board-table td[b-rfuxhf3k3d] {
    padding: 0.75rem 1rem;
    vertical-align: middle;
}

.wait-col[b-rfuxhf3k3d] {
    font-variant-numeric: tabular-nums;
    color: #8899b0;
}

/* Status Pills */
.status-pill[b-rfuxhf3k3d] {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-pill.severity-1[b-rfuxhf3k3d] { background: rgba(239, 68, 68, 0.2); color: #f87171; border: 1px solid rgba(239, 68, 68, 0.3); }
.status-pill.severity-2[b-rfuxhf3k3d] { background: rgba(249, 115, 22, 0.2); color: #fb923c; border: 1px solid rgba(249, 115, 22, 0.3); }
.status-pill.severity-3[b-rfuxhf3k3d] { background: rgba(234, 179, 8, 0.2); color: #facc15; border: 1px solid rgba(234, 179, 8, 0.3); }
.status-pill.severity-4[b-rfuxhf3k3d] { background: rgba(34, 197, 94, 0.2); color: #4ade80; border: 1px solid rgba(34, 197, 94, 0.3); }
.status-pill.severity-5[b-rfuxhf3k3d] { background: rgba(34, 197, 94, 0.15); color: #86efac; border: 1px solid rgba(34, 197, 94, 0.2); }

.severity-row-1 .patient-initials[b-rfuxhf3k3d] { color: #f87171; }
.severity-row-2 .patient-initials[b-rfuxhf3k3d] { color: #fb923c; }
.severity-row-3 .patient-initials[b-rfuxhf3k3d] { color: #facc15; }
.severity-row-4 .patient-initials[b-rfuxhf3k3d] { color: #4ade80; }
.severity-row-5 .patient-initials[b-rfuxhf3k3d] { color: #86efac; }

/* Announcements */
.display-announcements[b-rfuxhf3k3d] {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.announcements-list[b-rfuxhf3k3d] {
    flex: 1;
    overflow-y: auto;
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.announcement-empty[b-rfuxhf3k3d] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #5a6a80;
    gap: 0.5rem;
}

.announcement-empty i[b-rfuxhf3k3d] {
    font-size: 2rem;
}

.announcement-card[b-rfuxhf3k3d] {
    background: rgba(201, 169, 97, 0.08);
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-radius: 0.5rem;
    padding: 1rem;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    animation: slideIn-b-rfuxhf3k3d 0.4s ease;
}

@keyframes slideIn-b-rfuxhf3k3d {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.announcement-initials[b-rfuxhf3k3d] {
    font-weight: 700;
    font-size: 1.1rem;
    color: #c9a961;
    white-space: nowrap;
    min-width: 40px;
}

.announcement-text[b-rfuxhf3k3d] {
    font-size: 1rem;
    line-height: 1.4;
    color: #e8edf5;
}

/* Footer */
.display-footer[b-rfuxhf3k3d] {
    padding: 0.5rem 2rem;
    display: flex;
    justify-content: space-between;
    color: #5a6a80;
    font-size: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.display-footer i[b-rfuxhf3k3d] {
    margin-right: 0.25rem;
}

/* Responsive - smaller screens */
@media (max-width: 1024px) {
    .display-body[b-rfuxhf3k3d] {
        grid-template-columns: 1fr;
    }

    .header-left h1[b-rfuxhf3k3d] {
        font-size: 1.3rem;
    }

    .header-clock[b-rfuxhf3k3d] {
        font-size: 1.5rem;
    }
}
