/* ==========================================================================
   مصرف النوران - ورقة الأنماط الكاملة (Al-Nuran Bank - Style Sheet)
   ========================================================================== */

/* 1. Global Reset & Variables */
:root {
    --primary-color: #134175;       /* أزرق النوران الملكي الداكن */
    --primary-dark: #0b1e36;        /* أزرق ليلي داكن */
    --accent-gold: #d6c184;         /* ذهبي النوران الفاخر */
    --accent-gold-hover: #c4ae6f;   /* ذهبي داكن */
    --secondary-blue: #006dac;      /* أزرق متوسط */
    --secondary-cyan: #0093b4;      /* تركواز فاتح */
    --light-bg: #f4f7fa;            /* رمادي ناصع للخلفيات */
    --white: #ffffff;
    --dark-text: #1a2c42;
    --muted-text: #6b7a8a;
    --border-color: #e1e7ec;
    --success: #2ec4b6;
    --danger: #e71d36;
    --warning: #ff9f1c;
    --font-family: 'Cairo', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(19, 65, 117, 0.05);
    --shadow-md: 0 8px 24px rgba(19, 65, 117, 0.08);
    --shadow-lg: 0 16px 40px rgba(19, 65, 117, 0.12);
    --glass-bg: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    background-color: var(--light-bg);
    color: var(--dark-text);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

button, input, select {
    font-size: 1rem;
    border: none;
    background: none;
    transition: var(--transition-smooth);
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.w-100 { width: 100%; }
.flex-grow { flex-grow: 1; }
.text-warning { color: var(--warning); }
.text-danger { color: var(--danger); }
.text-success { color: var(--success); }
.font-bold { font-weight: 700; }

/* 2. Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(19, 65, 117, 0.2);
}

.btn-gold {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
}

.btn-gold:hover {
    background-color: var(--accent-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(214, 193, 132, 0.3);
}

.btn-secondary {
    background-color: var(--border-color);
    color: var(--dark-text);
}

.btn-secondary:hover {
    background-color: #d2dae2;
}

.btn-outline-white {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
}

.btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 6px 14px;
    font-size: 0.875rem;
}

.btn-link {
    color: var(--primary-color);
    padding: 0;
    font-weight: 700;
}

.btn-link:hover {
    color: var(--secondary-blue);
    text-decoration: underline;
}

/* 3. Header & Navigation */
.top-bar {
    background-color: var(--primary-dark);
    color: var(--white);
    font-size: 0.8rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.exchange-ticker {
    display: flex;
    gap: 16px;
    align-items: center;
}

.ticker-label {
    color: var(--accent-gold);
    font-weight: 700;
}

.ticker-item .val {
    font-weight: 700;
}

.ticker-item .val.cash { color: #52b788; }
.ticker-item .val.check { color: var(--accent-gold); }

.top-links {
    display: flex;
    gap: 16px;
}

.top-links a:hover {
    color: var(--accent-gold);
}

.main-header {
    background-color: var(--white);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text .ar-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.2;
}

.logo-text .ar-title.gold-text {
    color: var(--accent-gold);
}

.logo-text .en-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--muted-text);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.logo-text .en-title.white-text {
    color: var(--white);
}

.nav-menu ul {
    display: flex;
    gap: 24px;
}

.nav-menu a {
    font-weight: 600;
    color: var(--primary-dark);
    position: relative;
    padding: 8px 0;
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: var(--transition-smooth);
}

.nav-menu a:hover::after, .nav-menu a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-banking {
    border: 2px solid var(--primary-color);
    background-color: transparent;
    color: var(--primary-color);
    padding: 8px 20px;
}

.btn-banking:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* 4. Mobile Drawer Menu */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background-color: var(--white);
    z-index: 1000;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    transition: var(--transition-smooth);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-drawer.open {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
}

.drawer-header h3 {
    color: var(--primary-color);
}

.drawer-close {
    font-size: 1.25rem;
    color: var(--muted-text);
    cursor: pointer;
}

.drawer-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.drawer-links a {
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 6px;
    display: block;
}

.drawer-links a.active, .drawer-links a:hover {
    background-color: var(--light-bg);
    color: var(--primary-color);
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.4);
    z-index: 999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.drawer-overlay.show {
    display: block;
    opacity: 1;
}

/* 5. Views Management */
.view-section {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.view-section.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* 6. Landing Page Sections */
/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
}

.slide {
    padding: 80px 0;
    color: var(--white);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 40px;
}

.hero-text-block h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.25;
    margin: 16px 0 24px 0;
}

.hero-text-block p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.badge-gold {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-block;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Phone Mockup Floating */
.phone-mockup {
    width: 280px;
    height: 560px;
    background-color: #0b1e36;
    border: 12px solid #23395d;
    border-radius: 36px;
    position: relative;
    margin: 0 auto;
    box-shadow: var(--shadow-lg), 0 0 0 2px rgba(255,255,255,0.05);
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #134175 0%, #0b1e36 100%);
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.mockup-logo {
    color: var(--accent-gold);
    font-weight: 800;
    font-size: 1.1rem;
}

.greeting {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
}

.mockup-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 16px;
    backdrop-filter: blur(10px);
    margin-bottom: 24px;
}

.card-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.card-balance {
    font-size: 1.4rem;
    color: var(--white);
    margin: 6px 0;
    font-weight: 700;
}

.card-num {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
}

.mockup-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.ms-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 12px 4px;
    text-align: center;
    color: var(--white);
    cursor: pointer;
}

.ms-item i {
    font-size: 1.25rem;
    color: var(--accent-gold);
    margin-bottom: 8px;
    display: block;
}

.ms-item span {
    font-size: 0.75rem;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Services Grid */
.services-section {
    padding: 80px 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 2.25rem;
    color: var(--primary-color);
    font-weight: 800;
}

.section-header p {
    color: var(--muted-text);
    font-size: 1.05rem;
    margin-top: 8px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.service-card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-gold);
}

.card-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(19, 65, 117, 0.05);
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.service-card:hover .card-icon {
    background-color: var(--primary-color);
    color: var(--white);
}

.service-card h3 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.service-card p {
    color: var(--muted-text);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.card-link {
    font-weight: 700;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.card-link:hover {
    color: var(--accent-gold);
}

/* Info Section (Currency + Corporate) */
.info-section {
    padding: 60px 0;
    background-color: #ecf1f6;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Exchange Table */
.exchange-widget {
    background-color: var(--white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow-md);
}

.exchange-widget h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.exchange-table {
    display: flex;
    flex-direction: column;
}

.table-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    padding: 14px 8px;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.table-row.header {
    background-color: var(--light-bg);
    border-radius: 8px;
    font-weight: 700;
    color: var(--primary-color);
    border-bottom: none;
}

.table-row span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.flag-icon {
    color: var(--muted-text);
}

.exchange-widget .note {
    font-size: 0.75rem;
    color: var(--muted-text);
    margin-top: 16px;
}

/* Corporate Banner */
.corporate-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.corporate-banner h3 {
    font-size: 1.8rem;
    margin: 16px 0;
    font-weight: 800;
}

.corporate-banner p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.feat-list {
    margin-bottom: 32px;
}

.feat-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.feat-list li i {
    color: var(--accent-gold);
}

/* 7. Portal Section (Login / Registration) */
.portal-section {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    position: relative;
}

.portal-section::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 24px 24px;
}

.portal-card {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 24px;
    width: 100%;
    max-width: 460px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(20px);
    position: relative;
    z-index: 2;
    color: var(--white);
}

.portal-header {
    text-align: center;
    margin-bottom: 32px;
}

.portal-logo {
    margin-bottom: 16px;
}

.portal-header h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
}

.subtitle {
    font-size: 0.875rem;
    color: var(--accent-gold);
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.portal-tabs {
    display: flex;
    background: rgba(0, 0, 0, 0.2);
    padding: 4px;
    border-radius: 12px;
    margin-top: 24px;
    border: 1px solid rgba(255,255,255,0.05);
}

.tab-btn {
    flex: 1;
    padding: 10px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 700;
    cursor: pointer;
    border-radius: 8px;
}

.tab-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.portal-body {
    display: none;
}

.portal-body.active {
    display: block;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    right: 14px;
    color: var(--accent-gold);
    font-size: 1.1rem;
}

.input-wrapper input {
    width: 100%;
    padding: 12px 44px 12px 16px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--white);
    font-weight: 600;
    transition: var(--transition-smooth);
}

.input-wrapper input:focus {
    border-color: var(--accent-gold);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 0 3px rgba(214, 193, 132, 0.15);
}

.form-group .helper-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 6px;
    display: block;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    margin-bottom: 24px;
}

/* Checkbox Style */
.checkbox-container {
    display: block;
    position: relative;
    padding-right: 24px;
    cursor: pointer;
    user-select: none;
    color: rgba(255,255,255,0.7);
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0; width: 0;
}

.checkmark {
    position: absolute;
    top: 2px;
    right: 0;
    height: 16px;
    width: 16px;
    background-color: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
}

.checkbox-container:hover input ~ .checkmark {
    background-color: rgba(0, 0, 0, 0.4);
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 5px;
    top: 1px;
    width: 4px;
    height: 8px;
    border: solid var(--primary-dark);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.forgot-link {
    color: var(--accent-gold);
    font-weight: 600;
}

.forgot-link:hover {
    text-decoration: underline;
}

/* Registration Progress */
.reg-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding: 0 10px;
}

.reg-progress .step {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    border: 2px solid transparent;
    transition: var(--transition-smooth);
}

.reg-progress .step.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--accent-gold);
    box-shadow: 0 0 12px rgba(214, 193, 132, 0.3);
}

.reg-progress .step.completed {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
}

.progress-line {
    flex-grow: 1;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 0 8px;
    transition: var(--transition-smooth);
}

.progress-line.completed {
    background-color: var(--accent-gold);
}

.login-step-view {
    display: none;
}

.login-step-view.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.step-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 24px;
}

.form-navigation-buttons {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.success-icon-animation {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 20px;
    animation: scalePop 0.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scalePop {
    0% { transform: scale(0.7); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

/* 8. Dashboard Section (Logged In) */
.dashboard-wrapper {
    background-color: #edf1f6;
    min-height: 100vh;
    padding-bottom: 60px;
}

.dash-navbar {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 16px 0;
    border-bottom: 3px solid var(--accent-gold);
}

.dash-nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-profile .avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--accent-gold);
}

.profile-info .welcome-text {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    display: block;
}

.profile-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
}

.nub-badge {
    background-color: var(--primary-color);
    border: 1px solid var(--accent-gold);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.dash-container {
    padding-top: 32px;
}

.dash-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
}

/* Dashboard Blocks */
.dashboard-block {
    background-color: var(--white);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.dashboard-block h3 {
    font-size: 1.15rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.block-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.block-header h3 {
    margin-bottom: 0;
}

/* Balance Card (Dashboard) */
.balance-card {
    background: linear-gradient(135deg, #134175 0%, #0b1e36 100%);
    color: var(--white);
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--shadow-md), 0 10px 20px rgba(11, 30, 54, 0.15);
    position: relative;
    overflow: hidden;
}

.balance-card::before {
    content: '';
    position: absolute;
    top: -50px; left: -50px;
    width: 150px; height: 150px;
    border-radius: 50%;
    background: rgba(255,255,255,0.02);
}

.balance-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

.account-status {
    background-color: rgba(46, 196, 182, 0.15);
    color: var(--success);
    padding: 2px 10px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.balance-amount-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 16px 0 24px 0;
}

.balance-amount-row h1 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.balance-amount-row .currency {
    font-size: 1.25rem;
    color: var(--accent-gold);
    font-weight: 700;
}

.account-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 14px 18px;
    position: relative;
}

.acc-num-block {
    display: flex;
    flex-direction: column;
}

.acc-num-block .lbl {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
}

.acc-num-block .val {
    font-weight: 700;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.5px;
}

#dash-iban {
    font-size: 0.75rem;
    letter-spacing: 0;
}

.btn-copy-iban {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: var(--accent-gold);
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.btn-copy-iban:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

/* Card Mockup (Gold Theme) */
.visa-card-mockup {
    width: 100%;
    max-width: 340px;
    height: 200px;
    margin: 0 auto;
    perspective: 1000px;
}

.card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
}

.card-front {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    background: linear-gradient(135deg, #24395d 0%, #152e58 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 20px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.c-bg-pattern {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    opacity: 0.05;
    background: radial-gradient(circle, var(--accent-gold) 1px, transparent 1px);
    background-size: 16px 16px;
}

.c-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.card-title {
    font-weight: 800;
    color: var(--accent-gold);
    font-size: 0.95rem;
}

.card-brand {
    font-size: 2.25rem;
    color: var(--white);
}

.c-chip {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.wifi-icon {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.4);
    transform: rotate(90deg);
}

.c-number {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 12px 0;
    position: relative;
    z-index: 2;
    font-family: monospace;
}

.c-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
    z-index: 2;
}

.c-holder, .c-expires {
    display: flex;
    flex-direction: column;
}

.c-lbl {
    font-size: 0.6rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
}

.c-val {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.visa-card-mockup.frozen .card-front {
    filter: grayscale(1) contrast(0.8);
}

.visa-card-mockup.frozen::after {
    content: 'مجمدة';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    background-color: var(--danger);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
    letter-spacing: 1px;
    z-index: 10;
}

/* Card Toggles */
.card-toggles {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.toggle-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.toggle-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.toggle-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.toggle-label i {
    color: var(--primary-color);
}

/* Switch Slider styling */
.switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 22px;
}

.switch input {
    opacity: 0;
    width: 0; height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #ccc;
    transition: .3s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .3s;
}

input:checked + .slider {
    background-color: var(--primary-color);
}

input:checked + .slider:before {
    transform: translateX(22px);
}

.slider.round {
    border-radius: 22px;
}

.slider.round:before {
    border-radius: 50%;
}

/* Services Tabs (Transfer / Vouchers) */
.services-tab-header {
    display: flex;
    background-color: var(--light-bg);
    border-radius: 10px;
    padding: 4px;
    margin-bottom: 20px;
}

.service-tab-btn {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    font-weight: 700;
    color: var(--muted-text);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.9rem;
}

.service-tab-btn.active {
    background-color: var(--white);
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.service-tab-body {
    display: none;
}

.service-tab-body.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* Specific Service Styling: Vouchers */
.provider-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 8px;
}

.provider-card {
    cursor: pointer;
}

.provider-card input {
    position: absolute;
    opacity: 0;
    width: 0; height: 0;
}

.prov-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px 8px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background-color: var(--white);
    transition: var(--transition-smooth);
}

.logo-circ {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
}

.libyana .logo-circ { background-color: #ff9f1c; }
.almadar .logo-circ { background-color: #0093b4; }
.ltt .logo-circ { background-color: #134175; }

.prov-btn span {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--muted-text);
}

.provider-card input:checked + .prov-btn {
    border-color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(19, 65, 117, 0.1);
    background-color: rgba(19, 65, 117, 0.02);
}

.provider-card input:checked + .prov-btn span {
    color: var(--primary-color);
}

.voucher-value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 8px;
}

.val-card {
    cursor: pointer;
}

.val-card input {
    position: absolute;
    opacity: 0;
    width: 0; height: 0;
}

.val-card .v-val {
    display: block;
    text-align: center;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background-color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--muted-text);
    transition: var(--transition-smooth);
}

.val-card input:checked + .v-val {
    border-color: var(--accent-gold);
    color: var(--primary-color);
    background-color: rgba(214, 193, 132, 0.05);
    box-shadow: 0 4px 10px rgba(214, 193, 132, 0.1);
}

/* Form controls for dashboard inputs */
.dashboard-block .form-group label {
    color: var(--dark-text);
    font-size: 0.85rem;
}

.dashboard-block .input-wrapper input {
    background: var(--light-bg);
    border-color: var(--border-color);
    color: var(--dark-text);
}

.dashboard-block .input-wrapper input::placeholder {
    color: #a0aec0;
}

.dashboard-block .input-wrapper input:focus {
    background-color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(19, 65, 117, 0.1);
}

/* Transaction Table */
.table-responsive {
    width: 100%;
    overflow-x: auto;
}

.transaction-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    text-align: right;
}

.transaction-table th, .transaction-table td {
    padding: 14px 12px;
    border-bottom: 1px solid var(--border-color);
}

.transaction-table th {
    font-weight: 700;
    color: var(--primary-color);
    background-color: var(--light-bg);
}

.transaction-table tr:last-child td {
    border-bottom: none;
}

.trans-desc {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.trans-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.trans-icon.in {
    background-color: rgba(46, 196, 182, 0.1);
    color: var(--success);
}

.trans-icon.out {
    background-color: rgba(231, 29, 54, 0.1);
    color: var(--danger);
}

.trans-amount {
    font-weight: 700;
}

.trans-amount.in { color: var(--success); }
.trans-amount.out { color: var(--danger); }

.trans-status {
    font-size: 0.8rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 12px;
}

.trans-status.completed {
    background-color: rgba(46, 196, 182, 0.15);
    color: var(--success);
}

.trans-status.pending {
    background-color: rgba(255, 159, 28, 0.15);
    color: var(--warning);
}

/* 9. Footer */
.main-footer {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 0 0;
    font-size: 0.9rem;
    border-top: 4px solid var(--accent-gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 24px;
    font-weight: 700;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: 40px; height: 2px;
    background-color: var(--accent-gold);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul a:hover {
    color: var(--accent-gold);
    padding-right: 4px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.social-links a:hover {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-info li i {
    color: var(--accent-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px 0;
    font-size: 0.8rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-legal {
    display: flex;
    gap: 16px;
}

.footer-legal a:hover {
    color: var(--accent-gold);
}

/* 10. Modals */
.modal {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background-color: rgba(11, 30, 54, 0.6);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal.show {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background-color: var(--white);
    border-radius: 20px;
    width: 100%;
    max-width: 440px;
    box-shadow: var(--shadow-lg), 0 20px 40px rgba(0,0,0,0.2);
    border: 1px solid var(--border-color);
    padding: 28px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 14px;
}

.modal-header h3 {
    color: var(--primary-color);
    font-weight: 700;
}

.modal-close {
    font-size: 1.2rem;
    color: var(--muted-text);
    cursor: pointer;
}

.modal-close:hover {
    color: var(--danger);
}

.alert-icon-check {
    font-size: 3.5rem;
    margin-bottom: 12px;
}

.confirm-details-box {
    background-color: var(--light-bg);
    border-radius: 12px;
    padding: 16px;
    border: 1px solid var(--border-color);
}

.confirm-details-box .detail-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-bottom: 10px;
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: 6px;
}

.confirm-details-box .detail-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.modal-buttons {
    display: flex;
    gap: 12px;
}

.modal-buttons .btn {
    flex: 1;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1.15rem;
    transition: var(--transition-smooth);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(19, 65, 117, 0.1);
}

/* Voucher success card modal details */
.voucher-success-icon {
    font-size: 4rem;
    color: var(--success);
}

.voucher-box {
    background: linear-gradient(135deg, var(--light-bg) 0%, #eef3f7 100%);
    border: 2px solid var(--accent-gold);
    border-radius: 14px;
    padding: 20px;
    margin: 16px 0;
}

.voucher-box .v-row {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    margin-bottom: 12px;
}

.v-pin-box {
    border-top: 1px dashed var(--accent-gold);
    padding-top: 16px;
}

.pin-lbl {
    font-size: 0.8rem;
    color: var(--muted-text);
    display: block;
}

.pin-code-display {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 2px;
    margin-top: 6px;
    font-family: monospace;
    background-color: var(--white);
    padding: 10px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

/* 11. Toast Notifications */
.toast-container {
    position: fixed;
    bottom: 24px;
    left: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1100;
}

.toast {
    background-color: var(--white);
    border-right: 4px solid var(--primary-color);
    border-radius: 8px;
    padding: 16px 20px;
    box-shadow: var(--shadow-lg), 0 10px 20px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 280px;
    max-width: 360px;
    transform: translateX(-40px);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast.success { border-right-color: var(--success); }
.toast.danger { border-right-color: var(--danger); }
.toast.warning { border-right-color: var(--warning); }

.toast-icon {
    font-size: 1.25rem;
}

.toast.success .toast-icon { color: var(--success); }
.toast.danger .toast-icon { color: var(--danger); }
.toast.warning .toast-icon { color: var(--warning); }

.toast-msg {
    font-size: 0.9rem;
    font-weight: 600;
}

/* 12. Mobile App Components (Default Hidden) */
.mobile-app-header {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 60px;
    background-color: var(--primary-dark);
    color: var(--white);
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 150;
    border-bottom: 2px solid var(--accent-gold);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.m-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.m-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.m-welcome {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.m-header-center {
    font-weight: 800;
    color: var(--accent-gold);
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.m-icon-btn {
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
}

.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    height: 65px;
    background-color: var(--primary-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
    align-items: center;
    justify-content: space-around;
    z-index: 150;
    padding-bottom: env(safe-area-inset-bottom);
}

.mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    font-weight: 700;
    width: 60px;
    height: 100%;
    transition: var(--transition-smooth);
}

.mobile-bottom-nav .nav-item i {
    font-size: 1.25rem;
}

.mobile-bottom-nav .nav-item.active {
    color: var(--accent-gold);
}

/* 13. Media Queries (Responsiveness) */
@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text-block h1 {
        font-size: 2.25rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .phone-mockup {
        display: none; /* Hide phone preview on tablet/mobile slider for better layout spacing */
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .dash-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 60px !important;
        padding-bottom: 75px !important;
    }

    .container {
        padding: 0 16px;
    }

    /* Hide standard desktop elements */
    .top-bar, .main-header, .main-footer, .mobile-menu-toggle {
        display: none !important;
    }

    /* Show mobile app components */
    .mobile-app-header {
        display: flex;
    }
    
    .mobile-bottom-nav {
        display: flex;
    }

    .view-section {
        padding: 16px 0;
    }

    /* Hero Banner app-like card */
    .hero-slider {
        padding: 0 16px;
    }
    .slide {
        padding: 40px 24px !important;
        border-radius: 20px;
        box-shadow: var(--shadow-md);
        background-position: center;
    }
    .hero-text-block h1 {
        font-size: 1.9rem !important;
        margin: 12px 0 !important;
    }
    .hero-text-block p {
        font-size: 0.95rem !important;
        margin-bottom: 24px !important;
    }

    /* Mobile Grid for Services */
    .services-section {
        padding: 40px 16px !important;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }
    .service-card {
        padding: 24px 16px !important;
        text-align: center;
        border-radius: 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .card-icon {
        width: 52px !important;
        height: 52px !important;
        font-size: 1.3rem !important;
        margin-bottom: 12px !important;
    }
    .service-card h3 {
        font-size: 1.05rem !important;
        margin-bottom: 6px !important;
    }
    .service-card p {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
        margin-bottom: 12px !important;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* Full screen login portal on mobile */
    .portal-section {
        padding: 0 !important;
        min-height: calc(100vh - 135px) !important;
        background: var(--primary-dark) !important;
        align-items: flex-start !important;
    }
    .portal-card {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        border-radius: 0 !important;
        border: none !important;
        padding: 32px 20px !important;
        box-shadow: none !important;
        background: transparent !important;
    }

    /* Mobile Dashboard App Layout */
    .dash-container {
        padding-top: 16px !important;
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
    .dash-navbar {
        display: none !important;
    }
    .balance-card {
        padding: 20px !important;
        border-radius: 16px !important;
    }
    .balance-amount-row h1 {
        font-size: 2.3rem !important;
    }
    .account-details {
        padding: 10px 12px !important;
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    .btn-copy-iban {
        position: absolute;
        left: 12px;
        top: 12px;
    }
    
    /* Visa Card responsive width */
    .visa-card-mockup {
        max-width: 100% !important;
    }

    /* Bottom Sheet Modals on Mobile */
    .modal {
        align-items: flex-end !important;
    }
    .modal-content {
        max-width: 100% !important;
        width: 100% !important;
        border-radius: 24px 24px 0 0 !important;
        padding: 24px 20px 40px 20px !important;
        transform: translateY(100%) !important;
        border-bottom: none !important;
        transition: transform 0.3s cubic-bezier(0.1, 0.8, 0.3, 1) !important;
    }
    .modal.show .modal-content {
        transform: translateY(0) !important;
    }
    .modal-content::before {
        content: '';
        display: block;
        width: 45px;
        height: 5px;
        background-color: #cbd5e0;
        border-radius: 3px;
        margin: -12px auto 20px auto;
    }

    .dash-col-side {
        margin-top: 16px;
    }
}
