
html {
    overflow-y: scroll !important;
    scrollbar-gutter: stable !important;
}

body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0;
}

*, *::before, *::after {
    box-sizing: border-box;
}

/* Centered Layout Container Optimization */
.app-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 24px 20px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.grid-2col-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 20px;
    align-items: start;
}



/* ==========================================================================
   Swim Finder Premium UI & 2-Column Split Redesign
   ========================================================================== */

/* 2-Column Main Layout Grid */
.grid-2col-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 24px;
    align-items: start;
    margin-top: 10px;
}

.left-content-panel {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.right-content-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Schedule Disclaimer Text (Borderless & Compact) */
.schedule-disclaimer-box {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin-bottom: 6px !important;
}

.disclaimer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2px 10px;
    font-size: 0.70rem;
    color: #64748b;
    line-height: 1.3;
}

.disclaimer-list li {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-weight: 400;
}

.disclaimer-highlight {
    color: #d97706 !important;
    font-weight: 600 !important;
}

/* Center Filter Section */
.filter-section {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.02);
}

.center-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tab-btn {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #475569;
    padding: 9px 16px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.tab-btn:hover {
    background: #f1f5f9;
    color: #0284c7;
}

.tab-btn.active {
    background: #0284c7;
    border-color: #0284c7;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.2);
}

.search-box {
    position: relative;
    width: 100%;
}

.search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 0.95rem;
}

.search-input {
    width: 100%;
    padding: 10px 14px 10px 40px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.88rem;
    outline: none;
    transition: border-color 0.2s;
}

.search-input:focus {
    border-color: #0284c7;
}

/* Premium Table Section */
.table-section {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
    min-height: 450px !important;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f1f5f9;
}

.section-header h3 {
    font-size: 1.08rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.table-wrapper {
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #ffffff;
}

table th {
    background: #f8fafc;
    color: #475569;
    font-size: 0.84rem;
    font-weight: 700;
    padding: 14px 16px;
    text-align: left;
    border-bottom: 2px solid #e2e8f0;
    white-space: nowrap;
}

table td {
    padding: 14px 16px;
    font-size: 0.88rem;
    color: #334155;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
}

/* Row Hover & Watched Highlighting */
.course-row {
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.course-row:hover {
    background-color: #f8fafc !important;
}

.watched-row {
    background-color: #dcfce7 !important;
    border-left: 4px solid #16a34a !important;
}

.watched-row:hover {
    background-color: #bbf7d0 !important;
}

.course-title-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.course-name-text {
    font-size: 0.9rem;
    font-weight: 700;
    color: #0f172a;
}

.watched-pill {
    font-size: 0.72rem;
    background: #16a34a;
    color: #ffffff;
    padding: 3px 8px;
    border-radius: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.mobile-sub-time {
    display: none;
}

.btn-direct-small {
    background: #0284c7;
    color: #ffffff;
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: background 0.2s;
    white-space: nowrap;
}

.btn-direct-small:hover {
    background: #0369a1;
}

/* Right Column Cards */
.right-stats-bar {
    display: flex;
    gap: 10px;
}

.mini-stat-chip {
    flex: 1;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.02);
}

.mini-stat-chip .mini-label {
    font-size: 0.72rem;
    color: #64748b;
}

.mini-stat-chip strong {
    font-size: 0.95rem;
    color: #0f172a;
    font-weight: 800;
    margin-top: 2px;
}

.highlight-chip {
    border-color: #cbd5e1;
    background: #f8fafc;
}

.watchlist-panel-card,
.telegram-config-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.panel-header h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.watchlist-count-badge {
    font-size: 0.78rem;
    background: #fef3c7;
    color: #d97706;
    padding: 3px 10px;
    border-radius: 12px;
    font-weight: 700;
}

.watchlist-card-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: none !important;
    overflow-y: visible !important;
}

.watched-course-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.watched-card-header {
    display: flex;
    align-items: center;
    gap: 6px;
}

.center-name-tag {
    font-size: 0.76rem;
    color: #0284c7;
    font-weight: 700;
}

.watched-title {
    font-size: 0.9rem;
    color: #0f172a;
    font-weight: 700;
}

.watched-card-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.82rem;
    color: #475569;
}

.watched-card-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 6px;
    padding-top: 8px;
    border-top: 1px dashed #cbd5e1;
}

.btn-remove-watch {
    background: #fee2e2;
    color: #dc2626;
    border: none;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
}

.btn-remove-watch:hover {
    background: #fca5a5;
}

/* Black Background & Light Gray Text / Lines Dark Mode */
body.dark-mode {
    background-color: #000000 !important;
    color: #e2e8f0 !important;
}

body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode strong,
body.dark-mode b,
body.dark-mode p,
body.dark-mode span,
body.dark-mode div,
body.dark-mode label,
body.dark-mode i {
    color: #e2e8f0 !important;
}

body.dark-mode .sub-tag,
body.dark-mode .disclaimer-list,
body.dark-mode .disclaimer-list li,
body.dark-mode .mobile-sub-time,
body.dark-mode .update-time,
body.dark-mode .watched-card-sub {
    color: #94a3b8 !important;
}

body.dark-mode .app-header,
body.dark-mode .schedule-disclaimer-box,
body.dark-mode .filter-section,
body.dark-mode .table-section,
body.dark-mode .mini-stat-chip,
body.dark-mode .watchlist-panel-card,
body.dark-mode .telegram-config-banner,
body.dark-mode .modal-content {
    background-color: #09090b !important;
    border: 1px solid #475569 !important;
    color: #e2e8f0 !important;
    box-shadow: none !important;
}

body.dark-mode table {
    background-color: #09090b !important;
}

body.dark-mode table th {
    background-color: #18181b !important;
    color: #e2e8f0 !important;
    border-bottom: 1px solid #475569 !important;
}

body.dark-mode table td {
    color: #e2e8f0 !important;
    border-bottom: 1px solid #334155 !important;
}

body.dark-mode .course-row:hover {
    background-color: #18181b !important;
}

body.dark-mode .watched-row {
    background-color: #14381d !important;
    border-left: 4px solid #22c55e !important;
}

body.dark-mode .watched-row:hover {
    background-color: #1b4d28 !important;
}

body.dark-mode .tab-btn {
    background: #09090b !important;
    border: 1px solid #475569 !important;
    color: #cbd5e1 !important;
}

body.dark-mode .tab-btn.active {
    background: #cbd5e1 !important;
    color: #0f172a !important;
    border: 1px solid #cbd5e1 !important;
    font-weight: 800 !important;
}

body.dark-mode .btn-direct-small {
    background: #18181b !important;
    color: #e2e8f0 !important;
    border: 1px solid #475569 !important;
}

body.dark-mode input,
body.dark-mode select {
    background: #18181b !important;
    border: 1px solid #475569 !important;
    color: #e2e8f0 !important;
}

body.dark-mode input::placeholder {
    color: #64748b !important;
}

/* Mobile Responsiveness & Lightweight Optimizations */
@media (max-width: 1080px) {
    .grid-2col-layout {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
}

@media (max-width: 768px) {
    *, *::before, *::after {
        box-sizing: border-box !important;
    }

    .grid-2col-layout {
        display: flex !important;
        flex-direction: column !important;
        gap: 14px !important;
        width: 100% !important;
    }

    .left-content-panel,
    .right-content-panel {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .left-content-panel {
        display: contents !important;
    }

    .schedule-disclaimer-box {
        order: 1 !important;
    }

    .filter-section {
        order: 2 !important;
    }

    .right-content-panel {
        order: 3 !important;
    }

    .table-section {
        order: 4 !important;
        min-height: 380px !important;
    }

    .schedule-disclaimer-box,
    .filter-section,
    .watchlist-panel-card,
    .table-section,
    .telegram-config-banner {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 12px 14px !important;
        border-radius: 14px !important;
    }

    .app-header {
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 4px 0 !important;
    }

    .right-stats-bar {
        width: 100% !important;
        display: flex !important;
        gap: 8px !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .mini-stat-chip {
        flex: 1 !important;
        padding: 10px !important;
        border-radius: 12px !important;
        box-sizing: border-box !important;
    }

    .app-container {
        padding: 12px 10px !important;
    }

    .top-utility-bar {
        font-size: 0.78rem !important;
        gap: 6px !important;
        padding: 2px !important;
    }

    .logo-text h1 {
        font-size: 1.15rem !important;
    }

    .sub-tag {
        font-size: 0.75rem !important;
    }

    .disclaimer-list {
        font-size: 0.78rem !important;
        flex-direction: column !important;
        gap: 4px !important;
    }

    .center-tabs {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 6px !important;
        width: 100% !important;
    }

    .tab-btn {
        width: 100% !important;
        padding: 9px 4px !important;
        font-size: 0.78rem !important;
        text-align: center !important;
        justify-content: center !important;
    }

    .telegram-config-banner {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .banner-body-row {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .banner-inputs-group {
        flex-direction: column !important;
        width: 100% !important;
        min-width: 0 !important;
    }

    .banner-buttons-group {
        width: 100% !important;
        justify-content: flex-end !important;
        gap: 8px !important;
        margin-left: 0 !important;
    }

    /* Performance optimization: Disable heavy CSS filters on mobile (< 768px) */
    *, *::before, *::after {
        filter: none !important;
        backdrop-filter: none !important;
    }

    /* Mobile 2-line max course view: full title visible without '...' */
    .mobile-sub-time {
        display: flex !important;
        align-items: center !important;
        gap: 3px !important;
        font-size: 0.70rem !important;
        letter-spacing: -0.3px !important;
        color: #64748b !important;
        margin-top: 2px !important;
        white-space: nowrap !important;
        overflow: visible !important;
    }

    body.dark-mode .mobile-sub-time {
        color: #94a3b8 !important;
    }

    .time-th,
    .time-td {
        display: none !important;
    }

    .table-wrapper {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    table {
        width: 100% !important;
        max-width: 100% !important;
        table-layout: fixed !important;
        box-sizing: border-box !important;
    }

    table th {
        font-size: 0.72rem !important;
        font-weight: 700 !important;
        padding: 6px 2px !important;
    }

    table th:nth-child(1) {
        font-size: 0.72rem !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    table td:nth-child(1),
    .course-name-td {
        min-width: 0 !important;
        max-width: none !important;
        width: auto !important;
        white-space: nowrap !important;
        padding-left: 2px !important;
        padding-right: 4px !important;
    }

    .course-title-wrap {
        display: flex !important;
        align-items: center !important;
        gap: 3px !important;
        width: auto !important;
        min-width: 0 !important;
    }

    .course-name-text {
        font-size: 0.73rem !important;
        letter-spacing: -0.4px !important;
        white-space: nowrap !important;
        overflow: visible !important;
        text-overflow: clip !important;
        display: inline-block !important;
        font-weight: 700 !important;
    }

    table th:nth-child(3), table td:nth-child(3) {
        font-size: 0.72rem !important;
        letter-spacing: -0.4px !important;
        padding: 6px 1px !important;
        width: 38px !important;
        white-space: nowrap !important;
        text-align: center !important;
    }

    table th:nth-child(4), table td:nth-child(4) {
        font-size: 0.72rem !important;
        letter-spacing: -0.4px !important;
        padding: 6px 1px !important;
        width: 44px !important;
        white-space: nowrap !important;
        text-align: center !important;
    }

    table th:nth-child(5), table td:nth-child(5) {
        font-size: 0.72rem !important;
        letter-spacing: -0.4px !important;
        padding: 6px 1px !important;
        width: 32px !important;
        white-space: nowrap !important;
        text-align: center !important;
    }

    .badge-status {
        padding: 1px 4px !important;
        font-size: 0.66rem !important;
        letter-spacing: -0.4px !important;
        border-radius: 5px !important;
    }

    .btn-icon-only {
        width: 18px !important;
        height: 18px !important;
        font-size: 0.65rem !important;
        border-radius: 4px !important;
    }
}



/* Strict Single-Line Table Formatting (No 2-line Wrapping) */
table th,
table td {
    white-space: nowrap !important;
    word-break: keep-all !important;
    padding: 12px 10px !important;
}

table th:nth-child(1),
table td:nth-child(1) {
    min-width: 270px;
}

table th:nth-child(2),
table td:nth-child(2) {
    min-width: 165px;
}

table th:nth-child(3),
table td:nth-child(3) {
    min-width: 85px;
    text-align: center !important;
}

table th:nth-child(4),
table td:nth-child(4) {
    min-width: 80px;
    text-align: center !important;
}

table th:nth-child(5),
table td:nth-child(5) {
    min-width: 90px;
    text-align: center !important;
}



/* Larger Swimmer Logo Badge & Small Thin Version Tag */
.logo-icon {
    width: 48px !important;
    height: 48px !important;
    font-size: 1.5rem !important;
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%) !important;
    color: #ffffff !important;
    border-radius: 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25) !important;
    flex-shrink: 0 !important;
}

.build-version {
    font-size: 0.65rem !important;
    font-weight: 300 !important;
    color: #94a3b8 !important;
    opacity: 0.75 !important;
    margin-left: 6px !important;
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    letter-spacing: 0.5px !important;
    vertical-align: middle !important;
    display: inline-block !important;
}

body.dark-mode .logo-icon {
    background: #18181b !important;
    color: #ffffff !important;
    border: 1px solid #3f3f46 !important;
    box-shadow: none !important;
}

body.dark-mode .build-version {
    color: #64748b !important;
    opacity: 0.85 !important;
}



/* Ultra-Compact Single-Screen Table Styling */
table th {
    padding: 10px 8px !important;
    font-size: 0.82rem !important;
}

table td {
    padding: 9px 8px !important;
    font-size: 0.82rem !important;
    white-space: nowrap !important;
    word-break: keep-all !important;
}

table th:nth-child(1),
table td:nth-child(1) {
    min-width: 0 !important;
    width: auto !important;
}

table th:nth-child(2),
table td:nth-child(2) {
    min-width: 0 !important;
}

table th:nth-child(3),
table td:nth-child(3) {
    min-width: 55px !important;
    width: 60px !important;
    text-align: center !important;
}

table th:nth-child(4),
table td:nth-child(4) {
    min-width: 55px !important;
    width: 60px !important;
    text-align: center !important;
}

table th:nth-child(5),
table td:nth-child(5) {
    min-width: 45px !important;
    width: 50px !important;
    text-align: center !important;
}

.btn-icon-only {
    background: #0284c7;
    color: #ffffff;
    width: 28px;
    height: 28px;
    border-radius: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.15s;
}

.btn-icon-only:hover {
    background: #0369a1;
}

body.dark-mode .btn-icon-only {
    background: #18181b !important;
    border: 1px solid #3f3f46 !important;
    color: #ffffff !important;
}

.badge-wait {
    background-color: #cbd5e1 !important;
    color: #0f172a !important;
    border: 1px solid #94a3b8 !important;
    font-weight: 800 !important;
    padding: 2px 8px !important;
}



/* Bottom Telegram Banner Styling & Dark Mode */
body.dark-mode .telegram-config-banner {
    background: #121212 !important;
    border-color: #27272a !important;
    box-shadow: none !important;
}

body.dark-mode .telegram-config-banner .input-item {
    background: #18181b !important;
    border-color: #3f3f46 !important;
}

body.dark-mode .telegram-config-banner input {
    color: #e2e8f0 !important;
}

body.dark-mode .telegram-config-banner .btn-test-alert {
    background: #18181b !important;
    border-color: #3f3f46 !important;
    color: #e2e8f0 !important;
}



/* Soft Rounded Light Green (연두색) 접수대기 Status Badge */
.badge-status,
.badge-wait,
.badge-avail,
.badge-end {
    border-radius: 10px !important;
    padding: 3px 10px !important;
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    display: inline-block !important;
    text-align: center !important;
    white-space: nowrap !important;
    letter-spacing: 0.2px !important;
}

.badge-wait {
    background-color: #d9f99d !important;
    color: #166534 !important;
    border: 1px solid #bef264 !important;
}

body.dark-mode .badge-wait {
    background-color: #142e1b !important;
    color: #86efac !important;
    border: 1px solid #16a34a !important;
}



/* Single-Line Center Tabs on Desktop Only */
@media (min-width: 769px) {
    .center-tabs {
        display: flex !important;
        gap: 6px !important;
        width: 100% !important;
        flex-wrap: nowrap !important;
    }

    .tab-btn {
        flex: 1 !important;
        padding: 8px 4px !important;
        font-size: 0.8rem !important;
        font-weight: 600 !important;
        text-align: center !important;
        justify-content: center !important;
        white-space: nowrap !important;
    }
}



/* Minimal Ultra-Compact Watched Course Card Styling */
.watchlist-card-list {
    display: flex;
    flex-direction: column;
    gap: 6px !important;
    max-height: none !important;
    overflow-y: visible !important;
}

.watched-course-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 10px !important;
    padding: 6px 12px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.02) !important;
}

.watched-card-top {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 6px !important;
}

.center-name-tag {
    font-size: 0.74rem !important;
    color: #0284c7 !important;
    font-weight: 700 !important;
}

.watched-title {
    font-size: 0.84rem !important;
    color: #0f172a !important;
    font-weight: 700 !important;
    margin: 0 !important;
    word-break: break-all !important;
    line-height: 1.15 !important;
}

.watched-card-sub {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    font-size: 0.76rem !important;
    color: #64748b !important;
    margin-top: 0 !important;
}

.capa-text {
    color: #334155 !important;
    font-weight: 700 !important;
}

.watched-card-top .badge-status,
.watched-card-top .btn-remove-watch {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 38px !important;
    height: 22px !important;
    padding: 0 6px !important;
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    border-radius: 6px !important;
    box-sizing: border-box !important;
    line-height: 1 !important;
}

.btn-remove-watch {
    background: #fee2e2 !important;
    color: #dc2626 !important;
    border: none !important;
    cursor: pointer !important;
    transition: background 0.15s !important;
}

.btn-remove-watch:hover {
    background: #fca5a5 !important;
}

body.dark-mode .watched-course-card {
    background: #09090b !important;
    border: 1px solid #475569 !important;
}

body.dark-mode .watched-title {
    color: #e2e8f0 !important;
}

body.dark-mode .watched-card-sub {
    color: #94a3b8 !important;
}

body.dark-mode .capa-text {
    color: #e2e8f0 !important;
}

body.dark-mode .admin-btn-inline {
    background: #18181b !important;
    border: 1px solid #64748b !important;
    color: #e2e8f0 !important;
}

body.dark-mode .btn-test-alert {
    background: #18181b !important;
    border: 1px solid #64748b !important;
    color: #e2e8f0 !important;
}
