/* Identity Verification Page Styles */

body {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    color: #e4e4e7;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    padding-bottom: env(safe-area-inset-bottom);
}

.ts-ambient {
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse at 20% 20%, rgba(16, 185, 129, 0.08) 0%, rgba(7, 11, 22, 0) 50%),
        radial-gradient(ellipse at 80% 80%, rgba(6, 182, 212, 0.06) 0%, rgba(7, 11, 22, 0) 50%);
    pointer-events: none;
    z-index: 0;
}

/* Header */
.header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(13, 17, 23, 0.9) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.back-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(13, 17, 23, 0.9) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #a1a1aa;
    cursor: pointer;
    transition: all 0.2s ease;
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.header-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
}

/* Main Content */
.main-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 1.5rem;
    position: relative;
    z-index: 1;
}

/* Status Banner */
.status-banner {
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.status-banner.success {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #34d399;
}

.status-banner.error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
}

.status-banner.hidden {
    display: none;
}

/* Status Card */
.status-card {
    background: rgba(13, 17, 23, 0.9) !important;
    border: 1px solid rgba(48, 54, 61, 0.6);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.status-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    margin-bottom: 1rem;
}

.status-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.status-text {
    font-size: 0.875rem;
    color: #a1a1aa;
    margin-bottom: 1rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: rgba(13, 17, 23, 0.9) !important;
    font-size: 0.875rem;
    color: #e4e4e7;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fbbf24;
}

.status-badge.verified .badge-dot {
    background: #10b981;
}

.status-badge.pending .badge-dot {
    background: #fbbf24;
    animation: pulse 2s infinite;
}

.status-badge.rejected .badge-dot {
    background: #ef4444;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Verification Form */
.verification-form {
    background: rgba(13, 17, 23, 0.9) !important;
    border: 1px solid rgba(48, 54, 61, 0.6);
    border-radius: 16px;
    padding: 1.5rem;
}

.verification-form.hidden {
    display: none;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    font-size: 0.875rem;
    color: #a1a1aa;
}

/* Progress Steps */
.progress-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    position: relative;
}

.step::before {
    content: '';
    position: absolute;
    top: 16px;
    left: calc(50% + 20px);
    right: calc(-50% + 20px);
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.step:last-child::before {
    display: none;
}

.step.active::before,
.step.completed::before {
    background: linear-gradient(90deg, #10b981, rgba(16, 185, 129, 0.3));
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: #a1a1aa;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: linear-gradient(135deg, #10b981, #059669);
    border-color: #10b981;
    color: #fff;
}

.step.completed .step-number {
    background: #10b981;
    border-color: #10b981;
    color: #fff;
}

.step-label {
    font-size: 0.75rem;
    color: #71717a;
    text-align: center;
}

.step.active .step-label {
    color: #10b981;
}

.step.completed .step-label {
    color: #10b981;
}

/* Form Steps */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Groups */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #e4e4e7;
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(13, 17, 23, 0.9) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.form-input:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-input::placeholder {
    color: #71717a;
}

/* Select dropdown styling */
select.form-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23a1a1aa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

select.form-input:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

select.form-input option {
    background-color: #1a1a2e;
    color: #e4e4e7;
    padding: 0.75rem 1rem;
}

select.form-input option:hover,
select.form-input option:focus,
select.form-input option:checked {
    background-color: #10b981;
    color: #fff;
}

select.form-input option:disabled {
    color: #71717a;
}

/* Document Types */
.document-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.document-option {
    cursor: pointer;
}

.document-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.document-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 1rem;
    background: rgba(13, 17, 23, 0.9) !important;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-align: center;
    transition: all 0.2s ease;
}

.document-card:hover {
    background: rgba(13, 17, 23, 0.9) !important;
    border-color: rgba(255, 255, 255, 0.2);
}

.document-option input:checked+.document-card {
    background: rgba(16, 185, 129, 0.1);
    border-color: #10b981;
}

.document-card svg {
    color: #a1a1aa;
    transition: color 0.2s ease;
}

.document-option input:checked+.document-card svg {
    color: #10b981;
}

.document-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: #e4e4e7;
}

.document-desc {
    font-size: 0.75rem;
    color: #71717a;
}

/* Upload Section */
.upload-section {
    margin-bottom: 1.5rem;
}

.upload-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #e4e4e7;
    margin-bottom: 0.5rem;
}

.optional {
    font-weight: 400;
    color: #71717a;
}

.required {
    font-weight: 600;
    color: #ef4444;
}

.upload-hint {
    font-size: 0.75rem;
    color: #71717a;
    margin-bottom: 0.5rem;
}

.upload-instructions {
    text-align: center;
    margin-bottom: 1.5rem;
}

.upload-instructions h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.upload-instructions p {
    font-size: 0.875rem;
    color: #a1a1aa;
}

/* Dropzone */
.upload-dropzone {
    position: relative;
    border: 2px dashed rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    overflow: hidden;
}

.upload-dropzone:hover {
    border-color: rgba(16, 185, 129, 0.5);
    background: rgba(16, 185, 129, 0.05);
}

.upload-dropzone.has-image {
    border-style: solid;
    border-color: #10b981;
    padding: 0;
}

.upload-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    pointer-events: none;
}

.dropzone-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.dropzone-content svg {
    color: #71717a;
}

.dropzone-text {
    font-size: 0.875rem;
    color: #e4e4e7;
}

.dropzone-hint {
    font-size: 0.75rem;
    color: #71717a;
}

.image-preview {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.image-preview.hidden {
    display: none;
}

.video-preview {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    background: #000;
}

.video-preview.hidden {
    display: none;
}

.remove-image {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.remove-image:hover {
    background: #ef4444;
}

.remove-image.hidden {
    display: none;
}

/* Buttons */
.button-group {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex: 1;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, #10b981, #059669);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: rgba(13, 17, 23, 0.9) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #e4e4e7;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.btn-spinner.hidden {
    display: none;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Verified Card */
.verified-card {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}

.verified-card.hidden {
    display: none;
}

.verified-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    margin-bottom: 1.5rem;
}

.verified-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 0.75rem;
}

.verified-text {
    font-size: 0.875rem;
    color: #a1a1aa;
    margin-bottom: 1.5rem;
}

/* Pending Card */
.pending-card {
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}

.pending-card.hidden {
    display: none;
}

.pending-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

.pending-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 0.75rem;
}

.pending-text {
    font-size: 0.875rem;
    color: #a1a1aa;
    margin-bottom: 1rem;
}

.pending-info {
    font-size: 0.875rem;
    color: #71717a;
    margin-bottom: 1.5rem;
}

.pending-info span:last-child {
    color: #e4e4e7;
}

/* Rejected Card */
.rejected-card {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}

.rejected-card.hidden {
    display: none;
}

.rejected-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    margin-bottom: 1.5rem;
}

.rejected-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ef4444;
    margin-bottom: 0.75rem;
}

.rejected-text {
    font-size: 0.875rem;
    color: #a1a1aa;
    margin-bottom: 1rem;
}

.rejection-reason {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.rejection-reason strong {
    display: block;
    font-size: 0.75rem;
    color: #71717a;
    margin-bottom: 0.5rem;
}

.rejection-reason p {
    font-size: 0.875rem;
    color: #f87171;
    margin: 0;
}

/* Responsive */
@media (max-width: 480px) {
    .document-types {
        grid-template-columns: 1fr;
    }

    .progress-steps {
        padding: 0;
    }

    .step-label {
        font-size: 0.625rem;
    }

    .button-group {
        flex-direction: column;
    }

    .btn-secondary {
        order: 1;
    }
}

/* ========== Live Camera Recording Styles ========== */

/* Camera Recording Area */
.camera-recording-area {
    background: rgba(0, 0, 0, 0.3);
    border: 2px dashed rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.camera-start-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.btn-camera-start {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 2rem 3rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(6, 182, 212, 0.2));
    border: 2px solid rgba(16, 185, 129, 0.4);
    border-radius: 16px;
    color: #10b981;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 600;
}

.btn-camera-start:hover {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.3), rgba(6, 182, 212, 0.3));
    border-color: rgba(16, 185, 129, 0.6);
    transform: scale(1.02);
}

.btn-camera-start svg {
    color: #10b981;
}

.camera-hint {
    font-size: 0.75rem;
    color: #71717a;
    margin: 0;
}

/* Camera Preview Section */
.camera-preview-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.camera-preview-section .video-preview {
    width: 100%;
    max-height: 300px;
    border-radius: 12px;
    background: #000;
}

.preview-actions {
    display: flex;
    justify-content: center;
}

.btn-retake {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(251, 146, 60, 0.15);
    border: 1px solid rgba(251, 146, 60, 0.3);
    border-radius: 10px;
    color: #fb923c;
    cursor: pointer;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.btn-retake:hover {
    background: rgba(251, 146, 60, 0.25);
}

/* Camera Modal */
.camera-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.camera-modal.hidden {
    display: none;
}

.camera-modal-content {
    width: 100%;
    max-width: 500px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.camera-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.camera-modal-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.camera-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(13, 17, 23, 0.9) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #a1a1aa;
    cursor: pointer;
    transition: all 0.2s ease;
}

.camera-close-btn:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.4);
    color: #ef4444;
}

.camera-instructions {
    padding: 1rem 1.5rem;
    background: rgba(251, 191, 36, 0.1);
    border-bottom: 1px solid rgba(251, 191, 36, 0.2);
}

.camera-instructions p {
    margin: 0;
    font-size: 0.8125rem;
    color: #fbbf24;
    line-height: 1.5;
}

/* Camera View */
.camera-view-container {
    position: relative;
    background: #000;
    aspect-ratio: 4/3;
}

.camera-live-view {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scaleX(-1);
    /* Mirror the front camera */
}

.camera-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.face-guide {
    width: 60%;
    height: 70%;
    border: 3px dashed rgba(16, 185, 129, 0.5);
    border-radius: 50%;
    animation: pulse-guide 2s ease-in-out infinite;
}

@keyframes pulse-guide {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* Recording Indicator */
.recording-indicator {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(239, 68, 68, 0.9);
    border-radius: 8px;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
}

.recording-indicator.hidden {
    display: none;
}

.recording-dot {
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.recording-timer {
    font-family: 'Inter', monospace;
}

/* Camera Controls */
.camera-controls {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.btn-record {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border: none;
    border-radius: 50px;
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 200px;
}

.btn-record:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.4);
}

.btn-record.recording {
    background: linear-gradient(135deg, #16a34a, #15803d);
    animation: pulse-record 1s ease-in-out infinite;
}

@keyframes pulse-record {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.4);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(22, 163, 74, 0);
    }
}

.record-icon {
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.btn-record.recording .record-icon {
    border-radius: 4px;
    width: 16px;
    height: 16px;
}

.recording-hint {
    font-size: 0.75rem;
    color: #71717a;
    margin: 0;
}

/* Camera Error */
.camera-error {
    padding: 3rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.camera-error.hidden {
    display: none;
}

.camera-error svg {
    color: #ef4444;
}

.camera-error p {
    margin: 0;
    color: #a1a1aa;
    font-size: 0.875rem;
}

.btn-retry {
    padding: 0.75rem 1.5rem;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 10px;
    color: #10b981;
    cursor: pointer;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.btn-retry:hover {
    background: rgba(16, 185, 129, 0.25);
}

/* Camera Modal Responsive */
@media (max-width: 480px) {
    .camera-modal-content {
        max-height: 90vh;
        overflow-y: auto;
    }

    .btn-camera-start {
        padding: 1.5rem 2rem;
    }
}