/* نسخه کامل با حفظ ساختار قبلی و اصلاح باگ‌های استایل */

@import url('../Vazirmatn.css');
:root {
    --primary-color: #4a90e2;
    --secondary-color: #f5f6fa;
    --text-color: #2c3e50;
    --border-color: #dcdde1;
    --success-color: #2ecc71;
    --error-color: #e74c3c;
    --dark: #343d3f;
    --color-title: #E0E0E0;
    --bg-dark: #343d3f;
    --bg-card: #2c3e50;
    --bg-input: #1e2729;
    --border-color: #555;
    --text-main: #fff;
    --text-muted: #bdc3c7;
    --primary: #4a90e2;
    --success: #27ae60;
    --danger: #c0392b;
    --warning: #e74c3c;
    --brand-color: #4A90E2; /* رنگ اصلی شما */
}

* {
    text-decoration: none;
    box-sizing: border-box;
    /* اصلاح حیاتی برای جلوگیری از به‌هم‌ریختگی عرض */
}



header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 999;
    
    /* رنگ هدر */
    background-color: var(--brand-color);
    
    /* ایجاد فاصله از لبه بالای گوشی بر اساس Safe Area */
    /* در اندروید این مقدار معمولا 0 است چون سیستم عامل اجازه نفوذ نمی‌دهد */
    /* در iOS این مقدار برابر با ارتفاع Status Bar است */
    padding-top: env(safe-area-inset-top);
    
    /* ارتفاع ثابت برای محتوای هدر */
    height: 50px;
    
    display: flex;
    align-items: center;
    justify-content: center;
}





body::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: url('../images/bg1.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: .1;
    pointer-events: none;
    /* جلوگیری از تداخل کلیک */
}

body {
    font-family: 'Vazirmatn UI FD', sans-serif;
    background: linear-gradient(135deg, var(--dark) 0%, #1e2729 100%);
    margin: 0;
    padding: 0;
    direction: rtl;
    display: flex;
    min-height: 100vh;
    width: 100%;
    flex-direction: column;
}

.btn-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 100%;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    align-content: center;
}


/* Container Common Styles */

.auth-container,
.profile-container {
    background: #343d3f;
    width: 100%;
    max-width: 700px;
    border-radius: 16px;
    box-shadow: 0 10px 30px -10px #182123;
    overflow: hidden;
    margin: auto auto;
    padding: 40px;
    border: 1px solid #ffffff1c;
    text-align: center;
    position: relative;
    /* برای پس‌زمینه */
    z-index: 1;
    /* اطمینان از نمایش روی پس‌زمینه */
}

.auth-container svg {
    width: 45%;
    height: auto;
    color: var(--primary-color);
    padding-left: 17px;
}


/* Tabs */

.tabs {
    display: flex;
    background: var(--secondary-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.tab-btn {
    flex: 1;
    padding: 12px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 15px;
    font-family: inherit;
    color: #7f8c8d;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
    font-weight: bold;
}

.home-container {
    text-align: center;
    max-width: 500px;
    /* افزایش عرض برای صفحه اصلی */
}

.home-title {
    color: var(--color-title);
    margin-bottom: 16px;
    text-shadow: -2px 1px 0px #182123;
}

.form-title {
    text-align: center;
    margin-bottom: 20px;
    color: #bdc3c7;
    text-shadow: -0.5px 0.5px 0px #000000;
}

.form-footer a {
    color: #bdc3c7 !important;
    text-shadow: -0.5px 0.5px 0px #1e2729;
}

.form-footer {
    margin-top: 20px;
    text-align: center;
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: center;
    gap: 24px;
    color: #ffffff1c;
    border-top: 1px solid #ffffff1c;
    padding-top: 32px;
}

.btn-large {
    padding: 15px;
    font-size: 18px;
}


/* Forms */

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    color: #E0E0E0;
}

.form-row {
    display: flex;
    gap: 10px;
}

.form-row .form-group {
    flex: 1;
}

label {
    display: block;
    margin-bottom: 5px;
    color: var(--text-color);
    font-size: 14px;
}

input,
textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid transparent;
    border-radius: 24px;
    font-family: inherit;
    box-sizing: border-box;
    transition: border 0.5s;
    background: #1e2729;
    color: var(--color-title);
    font-size: 16px;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

textarea {
    resize: vertical;
    height: 100px;
    border-radius: 24px !important;
}


/* Buttons */

.btn-primary {
    width: 100%;
    padding: 15px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 24px;
    cursor: pointer;
    font-size: 16px;
    font-family: inherit;
    margin-top: 10px;
    transition: background 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: #357abd;
}

.btn-primary:disabled {
    background-color: #bdc3c7;
    cursor: not-allowed;
}


/* Messages */

.message {
    position: absolute;
    /* تغییر به absolute برای قرارگیری روی کانتینر */
    top: 24px;
    left: 24px;
    right: 24px;
    /* برای وسط‌چین شدن */
    margin-top: 15px;
    padding: 24px 40px;
    border-radius: 16px;
    font-size: 14px;
    text-align: center;
    display: none;
    z-index: 10;
    /* بالاتر از پس‌زمینه */
}

.message.success {
    background-color: #d4edda;
    color: #155724;
    display: block;
}

.message.error {
    background-color: #f8d7da;
    color: #721c24;
    display: block;
}


/* Loader */

.loader {
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    display: none;
    margin-right: 10px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.hidden {
    display: none !important;
}


/* Profile Specific */

.profile-header {
    text-align: center;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.profile-header h2 {
    margin: 0;
    color: var(--primary-color);
}

.profile-actions {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.btn-secondary {
    background-color: #95a5a6;
    color: white;
}

.btn-danger {
    background-color: var(--error-color);
    color: white;
}

.btn-danger:hover {
    background-color: #c0392b;
}


/* --- ادغام و اصلاح کلاس‌های OTP --- */

.otp-inputs-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
    direction: ltr;
}

.otp-inputs-container input {
    width: 40px;
    height: 50px;
    text-align: center;
    font-size: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    transition: all 0.3s ease;
}

.otp-inputs-container input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    display: none;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-title {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.2em;
}

.otp-input {
    width: 40px;
    height: 50px;
    text-align: center;
    font-size: 20px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.otp-input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 5px rgba(74, 144, 226, 0.3);
}

@media (max-width: 480px) {
    .otp-input {
        width: 35px;
        height: 45px;
        font-size: 18px;
    }
    .otp-inputs-container {
        gap: 3px;
    }
}

.modal-message {
    margin-top: 10px;
    font-size: 14px;
    min-height: 20px;
}

.btn-modal-close {
    margin-top: 15px;
    background: #95a5a6;
}

.otp-input.valid,
.otp-inputs-container input.valid {
    background-color: #d4edda;
    border-color: #28a745;
    color: #155724;
}

.otp-input.invalid,
.otp-inputs-container input.invalid {
    background-color: #f8d7da;
    border-color: #dc3545;
    color: #721c24;
    animation: shake 0.3s;
}

@keyframes shake {
    0% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-5px);
    }
    50% {
        transform: translateX(5px);
    }
    75% {
        transform: translateX(-5px);
    }
    100% {
        transform: translateX(0);
    }
}


/* --- Calculator Styles --- */

.calc-container {
    max-width: 1000px;
    margin: 20px auto;
    background: var(--bg-dark);
    padding: 20px;
    border-radius: 16px;
    color: var(--text-main);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: var(--text-muted);
}

input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 5px rgba(74, 144, 226, 0.3);
}

.table-card {
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
}

.calc-table-header,
.calc-table-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px;
    border-bottom: 1px solid var(--border-color);
    align-items: center;
}

.calc-table-header {
    background: #182123;
    font-weight: bold;
    color: var(--text-muted);
    border-radius: 8px 8px 0 0;
    padding: 16px 16px;
}

.calc-table-row {
    background: rgba(255, 255, 255, 0.05);
    transition: background 0.2s;
}

.calc-table-row:hover {
    background: rgba(255, 255, 255, 0.1);
}

.col-row {
    flex: 0 0 40px;
    text-align: center;
}

.col-name {
    flex: 1;
    min-width: 150px;
    position: relative;
    /* برای لیست پیشنهادات */
}

.col-qty {
    flex: 0 0 80px;
}

.col-price {
    flex: 1;
    min-width: 120px;
}

.col-total {
    flex: 1;
    min-width: 100px;
    text-align: center;
    font-weight: bold;
    color: var(--success);
}

.col-desc {
    flex: 1;
    min-width: 120px;
}

.col-action {
    flex: 0 0 60px;
    text-align: center;
}

.btn {
    padding: 16px 16px;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    font-size: 14px;
    transition: opacity 0.2s;
    font-family: inherit;
}

.btn:hover {
    opacity: 0.9;
}

.btn-add {
    background: var(--success);
    color: white;
    margin-bottom: 15px;
}

.btn-save {
    background: var(--primary);
    color: white;
    margin-bottom: 15px;
}

.btn-delete {
    background: var(--danger);
    color: white;
    padding: 5px 10px;
    font-size: 12px;
}

.back-link {
    display: inline-block;
    margin-bottom: 15px;
    color: var(--primary);
    text-decoration: none;
    font-size: 14px;
}

.back-link:hover {
    text-decoration: underline;
}

.results-box {
    background: var(--bg-card);
    padding: 20px;
    border-radius: 16px;
    margin-top: 20px;
    border: 1.5px dashed #95a5a6;
}

.result-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.result-row.total {
    font-weight: bold;
    font-size: 1.2em;
    color: var(--success);
    border-top: 2px solid var(--border-color);
    border-bottom: none;
    padding-top: 10px;
    margin-top: 10px;
}

.message {
    margin-top: 10px;
    padding: 10px;
    border-radius: 6px;
    display: none;
    text-align: center;
}

.message.success {
    background: rgba(39, 174, 96, 0.2);
    color: #2ecc71;
    border: 1px solid #27ae60;
}

.message.error {
    background: rgba(192, 57, 43, 0.2);
    color: #e74c3c;
    border: 1px solid #c0392b;
}


/* واکنش‌گرایی برای موبایل */

.bottom-menu {
    display: none;
}

.topbar {
    background: #333;
    color: #fff;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-weight: bold;
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 14px;
}

.user-menu .name {
    font-weight: bold;
}

nav a {
    color: #fff;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 4px;
}

nav a:hover {
    background: #555;
}

main {
    padding: 20px;
    max-width: 100vw;
    margin: 0 auto;
    background: #fff;
    min-height: 400px;
    min-width: stretch;
}

.card {
    background: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 6px;
}

.menu {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: flex;
    gap: 27px;
    flex-direction: column;
}

.menu li {
    display: inline;
}

.menu a {
    text-decoration: none;
    color: #333;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.greeting {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.sub {
    color: #666;
}

.logout-btn {
    padding: 6px 12px;
    background: #d9534f;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
}

.logout-btn:hover {
    background: #c12d2f;
}

.calc-list-container {
    max-width: 900px;
    margin: 20px auto;
    background: #343d3f;
    padding: 20px;
    border-radius: 16px;
    color: #fff;
}

.calc-item {
    background: #2c3e50;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #444;
}

.calc-actions {
    display: flex;
    gap: 10px;
}

.btn-load {
    background: #27ae60;
    color: white;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 5px;
    text-decoration: none;
}

.btn-del {
    background: #c0392b;
    color: white;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 5px;
}

.empty-msg {
    text-align: center;
    color: #7f8c8d;
    padding: 20px;
}

.money {
    color: #2ecc71;
    font-weight: bold;
}

#capture-area {
    min-width: 380px;
    max-width: 400px;
    margin: auto;
    z-index: 1;
    /* background-image: repeating-linear-gradient(-45deg, #3399cc00, #3399cc00 16px, #000000 16px, #000000 40px, #3399cc00 40px, #3399cc00 56px) !important;*/
    animation: moveDepth 3s linear infinite;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}


/* اصلاحات مدیا کوئری برای موبایل */

@media (max-width: 768px) {
    .btn-save,
    .btn-add {
        display: none;
    }
    .calc-table-header {
        display: none;
    }
    .calc-table-row {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 15px;
        border: 1px solid var(--border-color);
        margin-bottom: 32px;
        border-radius: 16px;
    }
    .col-row {
        display: none;
    }
    .col-name,
    .col-qty,
    .col-price,
    .col-desc {
        width: 100%;
        flex: auto;
    }
    .col-total {
        background: rgba(0, 0, 0, 0.2);
        padding: 8px 16px;
        border-radius: 24px;
        display: flex;
        justify-content: space-between;
    }
    .col-action {
        flex: 0 0 100%;
        text-align: center;
    }
    .table-card {
        border: 0px solid var(--border-color);
        border-radius: 16px;
        overflow: hidden;
    }
    .btn {
        padding: 8px 16px;
        border: none;
        border-radius: 24px;
        cursor: pointer;
        transition: opacity 0.2s;
        font-family: inherit;
        font-size: 16px;
        width: stretch;
        text-align: center;
    }
    .btn-delete {
        background: var(--danger);
        color: white;
    }
    .calc-container {
        max-width: 100%;
        margin: 20px auto;
        background: var(--bg-dark);
        padding: 20px;
        border-radius: 0px;
        color: var(--text-main);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        padding-bottom: 120px;
        /* فضای خالی برای منوی پایین */
    }
    .result-row.total {
        font-weight: bold;
        font-size: 1.2em;
        color: var(--success);
        border-top: 0px solid var(--border-color);
        border-bottom: none;
        padding-top: 0px;
        margin-top: 24px;
    }
    .results-box h1,
    h2,
    h3,
    h4 {
        text-align: center;
    }
    .form-group label {
        display: block;
        margin-bottom: 5px;
        font-weight: bold;
        color: var(--text-muted);
        text-align: center;
    }
    .results-box {
        background: var(--bg-card);
        padding: 20px;
        border-radius: 16px;
        margin-top: 20px;
        border: 2px dashed #95a5a6;
    }
    input,
    textarea {
        width: 100%;
        padding: 8px 16px;
        border: 1px solid transparent;
        border-radius: 24px;
        font-family: inherit;
        box-sizing: border-box;
        transition: border 0.5s;
        background: #1e2729;
        color: var(--color-title);
        font-size: 16px;
    }
    /* منوی پایین برای موبایل */
    .bottom-menu {
        background: #343d3f59;
        border: 1px solid #e4fdff4f;
        backdrop-filter: blur(7px);
        box-shadow: 0 8px 30px -10px #000;
        width: 90%;
        /* اصلاح عرض */
        z-index: 300;
        min-height: 40px;
        position: fixed;
        bottom: 16px;
        left: 50%;
        transform: translateX(-50%);
        /* وسط‌چین کردن افقی */
        border-radius: 300px;
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        padding: 10px 16px;
        gap: 16px;
    }
    .bottom-menu-btn {
        padding: 8px 16px;
        border: none;
        border-radius: 24px;
        cursor: pointer;
        transition: opacity 0.2s;
        font-family: inherit;
        font-size: 16px;
        width: 100%;
        display: flex;
        gap: 9px;
    }
    .bottom-menu-btn-add {
        background: #2ecc712e;
        border: 1px solid #f5f6fa29 !important;
        color: var(--success);
        margin-bottom: 0px;
        box-shadow: 0 5px 19px -7px #0000004d;
        text-shadow: -1px 1px 0px #004c11, -0.5px 0px 0px #ffffff70;
        backdrop-filter: blur(66px);
    }
    .bottom-menu-btn-save {
        background: #0076ff2e;
        border: 1px solid #f5f6fa29 !important;
        color: var(--primary);
        margin-bottom: 15px;
        box-shadow: 0 5px 19px -7px #0000004d;
        text-shadow: -1px 1px 0px #010e40, -0.5px 0px 0px #ffffff70;
        backdrop-filter: blur(66px);
    }
    .bottom-menu svg {
        width: 24px;
        height: auto;
    }
    /* لیست پیشنهادات */
    .input-wrapper {
        position: relative;
    }
    .datalist-options {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-input);
        border: 1px solid var(--border-color);
        max-height: 150px;
        overflow-y: auto;
        z-index: 1000;
        /* اطمینان از نمایش روی همه چیز */
        display: none;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    }
    .datalist-options div {
        padding: 8px;
        cursor: pointer;
        border-bottom: 1px solid #333;
    }
    .datalist-options div:hover {
        background: var(--bg-card);
    }
    .auth-container,
    .profile-container {
        background: transparent;
        width: 95%;
        /* عرض بیشتر در موبایل */
        max-width: 700px;
        border-radius: 16px;
        box-shadow: 0 10px 30px -10px transparent;
        overflow: hidden;
        margin: auto auto;
        padding: 40px;
        border: 0px solid #ffffff1c;
        text-align: center;
        height: auto;
    }
    main {
        padding: 20px;
        max-width: 100vw;
        margin: 0 auto;
        background: #fff;
        min-height: 400px;
    }
    .topbar {
        background: #333;
        color: #fff;
        padding: 14px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: stretch;
    }
    .form-footer {
        margin-top: 20px;
        text-align: center;
        display: flex;
        flex-direction: row;
        align-content: center;
        justify-content: center;
        align-items: center;
        gap: 16px;
        color: #ffffff1c;
        border-top: 1px solid #ffffff1c;
        padding-top: 32px;
    }
    /*******************************************************/
    .calc-list-container {
        max-width: 900px;
        margin: 20px auto;
        background: #343d3f;
        padding: 20px;
        border-radius: 16px;
        color: #fff;
    }
    .calc-item {
        background: #1e2729;
        padding: 24px;
        margin-bottom: 15px;
        border-radius: 16px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border: 1.5px dashed #ffffff3d;
        flex-direction: column;
    }
    .calc-info h3 {
        margin: 0 0 5px 0;
        color: #4a90e2;
    }
    .calc-info p {
        margin: 0;
        color: #bdc3c7;
        font-size: 0.9em;
    }
    .calc-actions {
        display: flex;
        gap: 16px;
        width: stretch;
        justify-content: space-around;
    }
    .btn-load {
        background: #27ae60;
        color: white;
        border: none;
        padding: 8px 15px;
        cursor: pointer;
        text-decoration: none;
        box-shadow: 0px 5px 15px -5px #0000003d;
        border: 1px solid #ffffff60;
        text-shadow: -1px 1px 0px #00000040;
    }
    .btn-del {
        background: #c0392b;
        color: white;
        border: none;
        padding: 8px 15px;
        cursor: pointer;
        box-shadow: 0px 5px 15px -5px #0000003d;
        border: 1px solid #ffffff60;
        text-shadow: -1px 1px 0px #00000040;
    }
    .empty-msg {
        text-align: center;
        color: #7f8c8d;
        padding: 20px;
    }
    .money {
        color: #2ecc71;
        font-weight: bold;
    }
    .calc-info h3 {
        margin: 0 0 5px 0;
        color: #4a90e2;
    }
    .calc-info p {
        margin: 0;
        color: #bdc3c7;
        font-size: 0.9em;
    }
    .calc-info {
        display: flex;
        gap: 12px;
        flex-direction: column;
        text-shadow: -1px 1px 0px #00000040;
    }
    .footer-text {
        padding: 20px;
        display: inline-flex;
        flex-direction: row-reverse;
        justify-content: flex-end;
        align-items: center;
        gap: 16px;
        background: var(--text-color);
        width: stretch;
        border: 2px dashed #95a5a6;
        border-radius: 16px;
        margin-top: 16px;
    }
    .footer-text svg {
        width: 100px;
        height: auto;
        margin-bottom: -8px;
        fill: #fff;
    }
    #capture-area {
        min-width: 380px;
        z-index: 1;
        /* background-image: repeating-linear-gradient(-45deg, #3399cc00, #3399cc00 16px, #000000 16px, #000000 40px, #3399cc00 40px, #3399cc00 56px) !important;*/
        animation: moveDepth 3s linear infinite;
        will-change: transform;
        transform: translateZ(0);
        backface-visibility: hidden;
    }
}