/* =========================================================
   ReturnInvoicePurchase.css - GlassCad Clean & Modern Style
   Compatible with WholesalePurchase.cshtml & OutboxInvoice.cshtml
   ========================================================= */

[v-cloak] {
    display: none !important;
}

p {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
}

/* --- Yumuşak İkon Tasarımı (Soft Icons) --- */
.soft-icon {
    opacity: 0.85;
    filter: saturate(0.8);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    display: inline-block;
}

.soft-icon:hover {
    opacity: 1;
    filter: saturate(1);
    transform: scale(1.15) translateY(-2px);
}

.flipped-icon {
    transform: scaleX(-1);
}

.flipped-icon.soft-icon:hover {
    transform: scaleX(-1) scale(1.15) translateY(-2px);
}

/* --- Ana Tablo Sarmalayıcı (Clean Wrapper) --- */
.glasscad-clean-wrapper {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
    overflow: visible;
    min-height: 200px;
}

.table-responsive-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    min-height: 250px;
}

/* --- Ana Temiz Tablo (Clean Table) --- */
.glasscad-clean-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-width: 900px;
}

.glasscad-clean-table thead {
    background-color: #fafafa;
    border-bottom: 1px solid #cbd5e1;
}

.glasscad-clean-table th {
    padding: 10px 12px;
    font-size: 11.5px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    vertical-align: middle;
    text-align: center;
    white-space: nowrap;
    transition: background-color 0.2s;
}

.glasscad-clean-table th.sortable-header {
    cursor: pointer;
    user-select: none;
}

.glasscad-clean-table th.sortable-header:hover {
    background-color: #f1f5f9;
    color: #305b9f;
}

.glasscad-clean-table tbody td {
    padding: 9px 12px !important;
    font-size: 13px;
    color: #334155;
    border-bottom: 1px solid #f1f5f9;
    border-top: none;
    border-left: none;
    border-right: none;
    vertical-align: middle;
    text-align: center;
    transition: background-color 0.15s ease;
}

.glasscad-clean-table tbody td.bold-data {
    font-weight: 600;
    color: #0f172a;
}

.glasscad-clean-table tbody tr:hover td {
    background-color: #f8fafc !important;
}

.glasscad-clean-table tbody tr.row-selected td,
.glasscad-clean-table tbody tr.row-clicked td {
    background-color: #d8e2ed !important;
    color: #0f172a !important;
    border-bottom: 1px solid #cbd5e1 !important;
    border-top: none;
    position: relative;
    z-index: 10;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.03);
}

.glasscad-clean-table tbody tr.row-selected td:first-child,
.glasscad-clean-table tbody tr.row-clicked td:first-child {
    box-shadow: inset 5px 0 0 0 #2C5D9F !important;
}

.glasscad-clean-table tbody tr.row-canceled td {
    background-color: #fff1f2 !important;
    color: #ef4444 !important;
    font-style: italic;
}

.glasscad-clean-table tbody tr.row-deleted td {
    background-color: #f8fafc !important;
    color: #94a3b8 !important;
    text-decoration: line-through;
    pointer-events: none;
}

/* --- Stok Detay Tablosu (Detail Table) --- */
.glasscad-detail-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
}

.glasscad-detail-table th {
    background: #f8fafc;
    color: #64748b;
    font-size: 12px;
    font-weight: 600;
    padding: 10px 16px;
    border-bottom: 1px solid #e2e8f0;
    text-align: center;
}

.glasscad-detail-table td {
    padding: 10px 16px;
    font-size: 13px;
    color: #475569;
    border-bottom: 1px solid #f1f5f9;
    text-align: center;
}

/* --- Üst Toolbar & Filtre Kutusu --- */
.top-action-bar-wrapper {
    padding: 0.8rem 1.2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    min-height: 55px;
    background-color: #305b9f;
    border-radius: 8px 8px 0 0;
    color: whitesmoke;
    align-items: center;
    justify-content: space-between;
}

.filter-box {
    position: absolute;
    right: 10px;
    width: 32rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.filter-box h4 {
    margin: 0 0 12px;
    font-size: 14px;
    color: #0f172a;
    font-weight: 700;
    text-transform: uppercase;
}

.filter-box label {
    display: flex;
    align-items: center;
    font-size: 13.5px;
    color: #475569;
    margin-bottom: 10px;
    cursor: pointer;
}

.filter-box input[type="radio"], 
.filter-box input[type="checkbox"] {
    margin-right: 8px;
    accent-color: #305b9f;
    cursor: pointer;
}

.filter-box input[type="date"] {
    padding: 6px 10px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    width: 100%;
    margin-top: 4px;
    color: #334155;
}

.filter-box button {
    background-color: #305b9f;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.2s;
}

.filter-box button:hover {
    background-color: #1e3a8a;
}

/* --- Dişli (Gear) Açılır Menüleri --- */
.gear-dropdown {
    position: relative;
    display: inline-block;
    padding: 2px;
}

.gear-trigger {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 6px;
    border-radius: 6px;
    transition: background-color 0.2s;
}

.gear-trigger:hover {
    background-color: #f1f5f9;
}

.gear-caret {
    font-size: 11px;
    color: #94a3b8;
}

.gear-dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: 50%;
    transform: translateX(50%);
    top: 100%;
    background-color: #ffffff;
    min-width: 140px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    z-index: 1000;
    padding: 4px 0;
    transition: all 0.2s ease;
    text-align: left;
}

.gear-dropdown:hover .gear-dropdown-content {
    visibility: visible;
    opacity: 1;
    top: calc(100% + 2px);
}

.gear-dropdown-item {
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
    text-transform: none;
    display: block;
    border-bottom: 1px solid #f8fafc;
}

.gear-dropdown-item:last-child {
    border-bottom: none;
}

.gear-dropdown-item:hover {
    background-color: #f0f7ff;
    color: #2563eb;
}

/* --- Dönen Dişli Renk Sınıfları --- */
.rotating-icon, .rotating-IsIntegrated-icon, .rotating-integrationCode-icon {
    transition: transform 0.5s ease-in-out;
    display: inline-block;
}

.rotate-0, .rotate-IsIntegrated-0, .rotate-integrationCode-0 {
    transform: rotate(0deg);
    color: #3b82f6;
    font-size: 1.15rem;
}

.rotate-1 {
    transform: rotate(90deg);
    color: #f59e0b;
    font-size: 1.15rem;
}

.rotate-2 {
    transform: rotate(180deg);
    color: #10b981;
    font-size: 1.15rem;
}

.rotate-IsIntegrated-1 {
    transform: rotate(120deg);
    color: #eab308;
    font-size: 1.15rem;
}

.rotate-IsIntegrated-2 {
    transform: rotate(240deg);
    color: #9ca3af;
    font-size: 1.15rem;
}

.rotate-integrationCode-1 {
    transform: rotate(60deg);
    color: #10b981;
    font-size: 1.15rem;
}

.rotate-integrationCode-2 {
    transform: rotate(120deg);
    color: #eab308;
    font-size: 1.15rem;
}

.rotate-integrationCode-3 {
    transform: rotate(180deg);
    color: #f97316;
    font-size: 1.15rem;
}

.rotate-integrationCode-4 {
    transform: rotate(240deg);
    color: #ec4899;
    font-size: 1.15rem;
}

.rotate-integrationCode-5 {
    transform: rotate(300deg);
    color: #a855f7;
    font-size: 1.15rem;
}

/* --- Durum Rozetleri (Status Badge) --- */
.status-badge-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    border-radius: 6px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
    min-width: 75px;
}

.status-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 5px rgba(0,0,0,0.15);
}

.status-text {
    font-size: 9.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- Sayfalama (Pagination - image8-pagging) --- */
.image8-pagging {
    display: inline-flex;
    align-items: center;
    background: transparent;
    height: 38px;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    overflow: hidden;
}

.image8-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-right: 1px solid #cbd5e1;
    background-color: #ffffff;
    width: 38px;
    height: 38px;
    margin: 0;
    padding: 0;
    cursor: pointer;
    transition: all 0.2s ease;
    outline: none;
    color: #64748b;
}

.image8-btn:last-child {
    border-right: none;
}

.image8-current-page-input {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-right: 1px solid #cbd5e1;
    background-color: #ffffff;
    width: 48px;
    height: 38px;
    margin: 0;
    padding: 0;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    outline: none;
    transition: box-shadow 0.2s, color 0.2s;
    cursor: pointer;
}

.image8-current-page-input:focus {
    box-shadow: inset 0 0 0 2px #305b9f;
    color: #305b9f;
    z-index: 10;
    cursor: text;
}

.image8-btn:hover:not(:disabled) {
    background-color: #f8fafc;
    color: #305b9f;
}

.image8-current-page-input:hover:not(:focus) {
    background-color: #f8fafc;
}

.image8-btn:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.image8-current-page-input::-webkit-outer-spin-button,
.image8-current-page-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.image8-current-page-input[type=number] {
    -moz-appearance: textfield;
}

/* --- Genel Modal & Maske Stilleri --- */
.modal-mask {
    position: fixed;
    z-index: 9998;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(2px);
    display: table;
    transition: opacity 0.3s ease;
}

.modal-wrapper {
    display: table-cell;
    vertical-align: middle;
}

.modal-container {
    width: 90%;
    max-width: 500px;
    margin: 0px auto;
    padding: 0px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden;
}

.modal-header {
    background-color: #f8fafc;
    color: #1e293b;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    border-bottom: 1px solid #e2e8f0;
}

.modal-body {
    padding: 24px;
    font-size: 14px;
    color: #334155;
}

.modal-footer {
    padding: 16px 24px;
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

/* --- İçe/Dışa Aktarma Modalı (showImportModal) --- */
.invoice-modal-backdrop {
    position: fixed;
    inset: 0;
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.invoice-modal-content {
    background: #f8fafc;
    padding: 24px;
    width: 95%;
    max-width: 1100px;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    max-height: 90vh;
    overflow-y: auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.invoice-modal-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1e293b;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 10px;
}

.invoice-modal-table,
.invoice-modal-subtable {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 14px;
}

.invoice-modal-table th,
.invoice-modal-subtable th {
    background-color: #305b9f;
    color: white;
    font-weight: 600;
    font-size: 13px;
    padding: 8px 10px;
    text-align: left;
    border: 1px solid #cbd5e1;
}

.invoice-modal-table td,
.invoice-modal-subtable td {
    border: 1px solid #e2e8f0;
    padding: 7px 10px;
    font-size: 13px;
    background-color: #ffffff;
}

.invoice-modal-main-row {
    background-color: #f1f5f9;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.2s;
}

.invoice-modal-main-row:hover {
    background-color: #e2e8f0;
}

.invoice-modal-close, .invoice-modal-save {
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    float: right;
    margin-top: 15px;
    transition: background-color 0.2s;
}

.invoice-modal-close {
    background-color: #ef4444;
    color: white;
    margin-right: 10px;
}

.invoice-modal-close:hover {
    background-color: #dc2626;
}

.invoice-modal-save {
    background-color: #305b9f;
    color: white;
}

.invoice-modal-save:hover {
    background-color: #1e3a8a;
}

/* --- Dışa Aktar Dropdown --- */
.dropdown-menu {
    position: absolute;
    background-color: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 8px 0;
    border-radius: 6px;
    width: 150px;
}

.dropdown-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.dropdown-item {
    padding: 8px 16px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    color: #334155;
    transition: background-color 0.2s;
}

.dropdown-item:hover {
    background-color: #f1f5f9;
}

/* =========================================================
   Modern Responsive Invoice Viewer Modal (#invoiceModalDialag)
   from OutboxInvoice.cshtml
   ========================================================= */
.invoice-modal-dialog-custom {
    max-width: 900px !important;
    width: 90% !important;
    height: 92vh !important;
    margin: 4vh auto !important;
}

.invoice-modal-container {
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    border-radius: 16px !important;
    border: 1px solid rgba(226, 232, 240, 0.8) !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3) !important;
    overflow: hidden !important;
    background: #ffffff !important;
}

.invoice-modal-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: #ffffff;
    padding: 0.9rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
    z-index: 10;
}

.invoice-header-icon-box {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.invoice-modal-close-btn {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #ffffff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.2s ease;
}

.invoice-modal-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.08);
}

.invoice-modal-body-wrapper {
    position: relative;
    flex: 1;
    width: 100%;
    height: 100%;
    background-color: #ffffff !important;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.invoice-iframe-container {
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    border: none !important;
    background-color: #ffffff !important;
    flex: 1;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.invoice-print-animating .invoice-iframe-container {
    transform: scale(0.975);
    filter: brightness(0.92) contrast(1.05);
    border-radius: 8px;
}

.print-scan-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.25);
    backdrop-filter: blur(2px);
    z-index: 50;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.print-scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #3b82f6, #60a5fa, #3b82f6, transparent);
    box-shadow: 0 0 15px 3px rgba(59, 130, 246, 0.8);
    animation: scanAnim 1.6s ease-in-out infinite;
}

@keyframes scanAnim {
    0% { top: 0%; opacity: 0.2; }
    50% { opacity: 1; }
    100% { top: 100%; opacity: 0.2; }
}

.print-ripple-badge {
    background: rgba(15, 23, 42, 0.85);
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 0.92rem;
    font-weight: 600;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.15);
    animation: badgePulse 1.6s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.04); }
}

.invoice-modal-footer {
    padding: 0.8rem 1.5rem;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

/* --- Pro Butonlar (Modal içi ve aksiyon butonları) --- */
.pro-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.88rem;
    padding: 0.45rem 0.9rem;
    border-radius: 8px !important;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.pro-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

.pro-btn.btn-primary {
    background-color: #2563eb;
    color: #ffffff;
}

.pro-btn.btn-primary:hover {
    background-color: #1d4ed8;
}

.pro-btn.btn-secondary {
    background-color: #64748b;
    color: #ffffff;
}

.pro-btn.btn-secondary:hover {
    background-color: #475569;
}

.pro-btn.btn-outline-secondary {
    background-color: #ffffff;
    color: #475569;
    border: 1px solid #cbd5e1;
}

.pro-btn.btn-outline-secondary:hover {
    background-color: #f1f5f9;
}

.print-action-btn {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
    color: #ffffff !important;
    padding: 0.5rem 1.2rem !important;
}

/* =========================================================
   Modern Alış Faturası Seçim Modalı (#modal_InvoiceSelection)
   ========================================================= */
.modal-select-invoice-content {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.modal-select-invoice-header {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 12px 20px;
}

.ettn-warning-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    background-color: #fff7ed;
    color: #c2410c;
    border: 1px solid #fed7aa;
    white-space: nowrap;
}

.ettn-success-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    background-color: #f0fdf4;
    color: #15803d;
    border: 1px solid #bbf7d0;
    white-space: nowrap;
}

/* --- Responsive Kuralları --- */
@media screen and (max-width: 1400px) {
    .hide-on-small-screen {
        display: none !important;
    }
}

@media screen and (max-width: 1024px) {
    .glasscad-clean-table th,
    .glasscad-clean-table tbody td {
        padding: 8px 10px !important;
        font-size: 12px !important;
    }

    .soft-icon {
        font-size: 18px !important;
        margin: 0 6px !important;
    }
}

@media screen and (max-width: 768px) {
    .top-action-bar-wrapper {
        flex-direction: column !important;
        align-items: flex-start !important;
        height: auto !important;
        padding: 10px !important;
    }

    .top-icons-left,
    .top-icons-right {
        width: 100%;
        justify-content: flex-start !important;
        flex-wrap: wrap !important;
        margin-bottom: 8px !important;
    }

    .top-icons-right {
        margin-bottom: 0 !important;
    }

    .filter-box {
        width: 95% !important;
        right: 2.5% !important;
        top: auto !important;
    }

    .page-info-mobile-fix {
        position: relative !important;
        left: 0 !important;
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
}


/* --- Modal Yükleme Durumu (Clean Loader State) --- */
.visually-hidden,
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.modal-loading-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
    color: #64748b;
}

.modal-loading-state .spinner-border {
    width: 2.25rem;
    height: 2.25rem;
    border-width: 3px;
    color: #305b9f !important;
}

.modal-loading-state .loading-text {
    margin-top: 12px;
    font-size: 13.5px;
    font-weight: 500;
    color: #64748b;
}
