/* =============================================================
   dz-timer — Global Stylesheet
   ============================================================= */

/* ---- Base ---- */
:root {
    --bg-deep:      #0b0a1e;
    --bg-mid:       #131130;
    --bg-card:      rgba(255,255,255,0.07);
    --bg-card-hover:rgba(255,255,255,0.12);
    --border-light: rgba(255,255,255,0.12);
    --accent-1:     #ff6b6b;
    --accent-2:     #ffa500;
    --accent-blue:  #4f9cff;
    --accent-green: #0fd47f;
    --text-main:    #f0f2ff;
    --text-muted:   #8a96b5;
    --radius-card:  16px;
    --shadow-card:  0 8px 32px rgba(0,0,0,0.35);
}

* {
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, #0f0c29 0%, #1a1740 40%, #24243e 100%);
    background-attachment: fixed;
    color: var(--text-main);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
}

/* ---- Typography overrides (replace the old `* { color }` hack) ---- */
h1, h2, h3, h4, h5, h6 { color: var(--text-main); }
p { color: var(--text-main); }
a { color: var(--accent-blue); }
a:hover { color: #82bcff; }
small { color: var(--text-muted); }

/* Override Bootstrap's dark .text-muted which is unreadable on our dark theme */
.text-muted { color: var(--text-muted) !important; }
.card-footer.text-muted { color: var(--text-muted) !important; }

/* Section titles */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}
.section-sub {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* ---- Navbar ---- */
.navbar {
    background: rgba(11, 10, 30, 0.85) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border-light);
    padding: 0.75rem 0;
    z-index: 1030;
}
.navbar-brand { text-decoration: none; }
.brand-icon { font-size: 1.4rem; }
.brand-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.5px;
}
.nav-link {
    color: rgba(255,255,255,0.75) !important;
    font-size: 0.95rem;
    transition: color 0.2s;
}
.nav-link:hover { color: var(--text-main) !important; }

.messages-container { padding: 0.5rem 0; }

/* ---- Buttons ---- */
.btn-primary {
    background: linear-gradient(45deg, var(--accent-1), var(--accent-2));
    border: none;
    font-weight: 600;
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(255,107,107,0.35);
}
.btn-primary:hover {
    background: linear-gradient(45deg, #ff5252, #ff8c00);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,107,107,0.55);
}
.btn-outline-primary {
    border-color: var(--accent-1);
    color: var(--accent-1) !important;
}
.btn-outline-primary:hover {
    background: var(--accent-1);
    color: #fff !important;
}
.btn-outline-light { border-color: rgba(255,255,255,0.35); color: var(--text-main) !important; }
.btn-outline-light:hover { background: rgba(255,255,255,0.1); }
.btn-outline-secondary { border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.65) !important; font-size: 0.85rem; }
.btn-outline-secondary:hover { background: rgba(255,255,255,0.08); }

/* ---- Cards base ---- */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-card);
    color: var(--text-main);
}

/* ---- Forms ---- */
.form-label, label { color: #c8d0e8; font-weight: 500; }
.form-control {
    color: var(--text-main);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    padding: 0.65rem 1rem;
    transition: all 0.2s;
}
.form-control::placeholder { color: rgba(255,255,255,0.4); }
.form-control:focus {
    color: var(--text-main);
    background: rgba(255,255,255,0.13);
    border-color: var(--accent-1);
    box-shadow: 0 0 0 3px rgba(255,107,107,0.2);
    outline: none;
}
/* Fix Bootstrap's white form-control in dark context */
.form-select {
    color: var(--text-main);
    background-color: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
}

/* ---- Dropdown ---- */
.dropdown-menu {
    background: rgba(15,12,40,0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-light);
    border-radius: 10px;
}
.dropdown-item { color: var(--text-main) !important; font-size: 0.9rem; }
.dropdown-item:hover, .dropdown-item:focus { background: rgba(255,255,255,0.08); }
.dropdown-item.active { background: rgba(255,107,107,0.2); }
.dropdown-divider { border-color: var(--border-light); }

/* ---- Tables ---- */
.table { color: var(--text-main); }
.table th, .table td { border-color: var(--border-light); color: var(--text-main); }
.table-hover tbody tr:hover { background: rgba(255,255,255,0.05); }

/* =============================================================
   HERO SECTION
   ============================================================= */
.hero-section {
    padding: 120px 0 80px;
    text-align: center;
}
.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    padding: 6px 20px;
    font-size: 0.9rem;
    color: var(--text-main);
}
.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}
.text-gradient {
    background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}
.hero-trust {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* =============================================================
   TRUST BAR
   ============================================================= */
.trust-bar {
    background: rgba(255,255,255,0.04);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}
.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 0.9rem;
}
.trust-icon {
    font-size: 1.5rem;
    color: var(--accent-blue);
}

/* =============================================================
   HOW IT WORKS
   ============================================================= */
.how-section { }
.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-card);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
}
.step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(45deg, var(--accent-1), var(--accent-2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(255,107,107,0.4);
}

/* =============================================================
   FEATURES
   ============================================================= */
.features-section { }
.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-card);
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
    border-color: rgba(255,255,255,0.2);
}
.feature-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(255,107,107,0.15), rgba(255,165,0,0.15));
    border: 1px solid rgba(255,107,107,0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--accent-1);
}

/* =============================================================
   FEATURE CARD HIGHLIGHT (eye / supervision)
   ============================================================= */
.feature-card--highlight {
    border-color: rgba(15, 212, 127, 0.35) !important;
    background: linear-gradient(160deg, rgba(15,212,127,0.07), rgba(0,198,255,0.05)) !important;
}
.feature-icon--alert {
    background: linear-gradient(135deg, rgba(15,212,127,0.18), rgba(0,198,255,0.12)) !important;
    border-color: rgba(15,212,127,0.4) !important;
    color: var(--accent-green) !important;
}

/* =============================================================
   EMPLOYEE VIEW SECTION
   ============================================================= */
.employee-view-section { }

.employee-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.employee-feature-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.employee-feature-list li p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--text-muted);
}
.employee-feature-list li strong {
    display: block;
    margin-bottom: 3px;
    color: var(--text-main);
    font-size: 0.95rem;
}
.emp-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(79,156,255,0.15);
    border: 1px solid rgba(79,156,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--accent-blue);
    flex-shrink: 0;
    margin-top: 2px;
}
.emp-icon--green {
    background: rgba(15,212,127,0.15);
    border-color: rgba(15,212,127,0.3);
    color: var(--accent-green);
}
.emp-icon--yellow {
    background: rgba(241,196,15,0.15);
    border-color: rgba(241,196,15,0.3);
    color: #f1c40f;
}

/* Mock desktop app card */
.mock-desktop-card {
    background: rgba(10,9,28,0.9);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.55);
}
.mock-titlebar { border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 10px; }
.mock-dot { width: 12px; height: 12px; border-radius: 50%; display: inline-block; }
.mock-status-row {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
}
.mock-status-label { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.mock-status-value { font-size: 0.95rem; font-weight: 600; color: var(--text-main); }
.mock-info-box {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
}
.mock-info-label { font-size: 0.72rem; color: var(--text-muted); }
.mock-info-value { font-size: 1.1rem; font-weight: 700; color: var(--text-main); }
.mock-notice {
    background: rgba(15,212,127,0.08);
    border: 1px solid rgba(15,212,127,0.25);
    border-radius: 8px;
    color: #a8ffdb;
}
/* Pulsing recording dot */
.mock-pulse {
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--accent-green);
    box-shadow: 0 0 0 0 rgba(15,212,127,0.6);
    animation: pulse 1.8s infinite;
    flex-shrink: 0;
}
@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(15,212,127,0.6); }
    70%  { box-shadow: 0 0 0 10px rgba(15,212,127,0); }
    100% { box-shadow: 0 0 0 0 rgba(15,212,127,0); }
}

/* =============================================================
   ANALYTICS SECTION
   ============================================================= */
.analytics-section {
    background: linear-gradient(135deg, rgba(12,34,72,0.7), rgba(24,46,90,0.75));
    border-radius: 20px;
    margin: 0 0 50px;
}
.metric-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}
.metric-label { font-size: 0.8rem; color: #a8b8e8; font-weight: 600; margin-bottom: 6px; }
.metric-value { font-size: 1.15rem; font-weight: 700; color: var(--text-main); }
.metric-sub { font-size: 0.8rem; color: #82e0ff; margin-bottom: 10px; }
.metric-bar {
    height: 5px;
    background: rgba(255,255,255,0.15);
    border-radius: 4px;
    overflow: hidden;
}
.metric-bar div {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-green), #00c6ff);
    border-radius: 4px;
}
.timeline-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid var(--border-light);
    border-radius: 14px;
}
.timeline-bar {
    display: flex;
    height: 14px;
    border-radius: 7px;
    overflow: hidden;
    background: rgba(255,255,255,0.1);
}
.timeline-segment { height: 100%; }
.timeline-segment.productive  { background: var(--accent-green); }
.timeline-segment.idle        { background: #f1c40f; }
.timeline-segment.unproductive{ background: #e74c3c; }
.timeline-legend {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.legend-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
    vertical-align: middle;
}
.legend-dot.productive  { background: var(--accent-green); }
.legend-dot.idle        { background: #f1c40f; }
.legend-dot.unproductive{ background: #e74c3c; }

/* =============================================================
   PRICING
   ============================================================= */
.pricing-section {
    position: relative;
}
.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-card);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}
.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
}
.pricing-card--featured {
    background: linear-gradient(160deg, rgba(255,107,107,0.12), rgba(255,165,0,0.1));
    border-color: rgba(255,107,107,0.35);
    box-shadow: 0 0 40px rgba(255,107,107,0.15);
}
.plan-badge-popular {
    display: inline-block;
    background: linear-gradient(45deg, var(--accent-1), var(--accent-2));
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
}
.plan-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
}
.plan-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.1;
}
.plan-currency {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
}
.plan-period {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
    min-height: 1.2rem;
}
.plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
}
.plan-features li {
    padding: 6px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-main);
}
.plan-features li:last-child { border-bottom: none; }
.plan-features li.text-muted { color: var(--text-muted) !important; }

.pricing-calc-hint {
    background: rgba(255,165,0,0.08);
    border: 1px solid rgba(255,165,0,0.25);
    border-radius: 10px;
}

/* =============================================================
   DOWNLOAD SECTION
   ============================================================= */
.download-section {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    margin: 0 0 50px;
}

/* =============================================================
   DOWNLOAD APP PAGE
   ============================================================= */
.download-app-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-card);
    transition: transform 0.3s, box-shadow 0.3s;
}
.download-app-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}
.download-os-icon {
    font-size: 3.5rem;
    color: var(--text-main);
    line-height: 1;
}

/* =============================================================
   REVIEWS / TESTIMONIALS
   ============================================================= */
.review-card {
    background: rgba(20,26,50,0.8);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-card);
    box-shadow: 0 6px 24px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.45);
}
.review-stars { color: #ffa500; font-size: 1rem; letter-spacing: 2px; }
.review-text {
    font-size: 0.95rem;
    color: #d4d9f0;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1rem;
}
.review-author { font-weight: 600; color: #ffb351; font-size: 0.9rem; }

/* =============================================================
   FAQ
   ============================================================= */
.faq-accordion .faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-light) !important;
    border-radius: 12px !important;
    margin-bottom: 10px;
    overflow: hidden;
}
.faq-btn {
    background: transparent !important;
    color: var(--text-main) !important;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 1rem 1.25rem;
    box-shadow: none !important;
}
.faq-btn::after { filter: invert(1); }
.faq-btn:not(.collapsed) { color: var(--accent-1) !important; }
.faq-body {
    background: rgba(255,255,255,0.03);
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
    padding: 1rem 1.25rem;
}

/* =============================================================
   FINAL CTA
   ============================================================= */
.final-cta-section {
    background: linear-gradient(135deg, rgba(255,107,107,0.1), rgba(255,165,0,0.08));
    border: 1px solid rgba(255,107,107,0.2);
    border-radius: 20px;
    margin: 0 0 50px;
}

/* =============================================================
   CONTACT SECTION
   ============================================================= */
.contact-section { }
.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
}

/* =============================================================
   FOOTER
   ============================================================= */
.site-footer {
    background: rgba(5, 4, 18, 0.9);
    border-top: 1px solid var(--border-light);
    margin-top: 80px;
}
.footer-brand { display: flex; align-items: center; }
.footer-desc { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }
.footer-company { color: var(--text-muted); font-size: 0.85rem; line-height: 1.7; }
.footer-company a { color: var(--accent-blue); }
.footer-heading { color: var(--text-main); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.75rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 6px; }
.footer-links a { color: var(--text-muted) !important; font-size: 0.9rem; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--text-main) !important; }
.footer-divider { border-color: var(--border-light); margin: 2rem 0 1rem; }
.footer-copy { color: var(--text-muted); font-size: 0.85rem; }
.footer-copy a { color: var(--text-muted) !important; text-decoration: none; }
.footer-copy a:hover { color: var(--text-main) !important; }
.badge-compliance {
    display: inline-block;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border-light);
    border-radius: 50px;
    padding: 4px 12px;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-right: 6px;
    margin-top: 4px;
}
.footer-badges { display: flex; flex-wrap: wrap; gap: 4px; }

/* =============================================================
   COOKIE BANNER
   ============================================================= */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    background: rgba(10,8,30,0.97);
    border-top: 1px solid var(--border-light);
    backdrop-filter: blur(10px);
    padding: 14px 0;
}
.cookie-banner p { color: var(--text-muted); }
.cookie-banner a { color: var(--accent-blue); }

/* =============================================================
   AUTH PAGES (signup / login)
   ============================================================= */
.auth-wrapper {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}
.auth-card {
    width: 100%;
    max-width: 480px;
    background: rgba(0,0,0,0.55);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-card);
    padding: 2.5rem;
    box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.auth-title { font-size: 1.75rem; font-weight: 700; text-align: center; }
.auth-sub { color: var(--text-muted); text-align: center; font-size: 0.95rem; }

/* =============================================================
   DASHBOARD
   ============================================================= */
.dash-header { padding: 2rem 0 1rem; border-bottom: 1px solid var(--border-light); margin-bottom: 2rem; }
.dash-stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-card);
    padding: 1.5rem;
    text-align: center;
}
.dash-stat-value { font-size: 2rem; font-weight: 700; color: var(--text-main); }
.dash-stat-label { font-size: 0.85rem; color: var(--text-muted); }
.dash-action-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-card);
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    color: var(--text-main) !important;
}
.dash-action-card:hover {
    background: var(--bg-card-hover);
    transform: translateX(4px);
}
.dash-action-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, rgba(255,107,107,0.15), rgba(255,165,0,0.15));
    border: 1px solid rgba(255,107,107,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* =============================================================
   BLOG
   ============================================================= */
.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-card);
    padding: 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    display: block;
    color: var(--text-main) !important;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }

/* =============================================================
   ALERTS / BADGES
   ============================================================= */
.alert-success  { background: rgba(15,212,127,0.15); border-color: rgba(15,212,127,0.3); color: #a8ffdb; }
.alert-danger   { background: rgba(231,76,60,0.15);  border-color: rgba(231,76,60,0.3);  color: #ffb3ad; }
.alert-info     { background: rgba(79,156,255,0.15); border-color: rgba(79,156,255,0.3); color: #b3d4ff; }
.alert-warning  { background: rgba(241,196,15,0.15); border-color: rgba(241,196,15,0.3); color: #ffe9a0; }
.btn-close { filter: invert(1); }

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 767px) {
    .hero-section { padding: 80px 0 50px; }
    .section-title { font-size: 1.6rem; }
    .plan-price { font-size: 1.8rem; }
    .auth-card { margin: 1rem; padding: 1.75rem; }
}

/* RTL support for Arabic */
[dir="rtl"] .bi { transform: scaleX(-1); }
[dir="rtl"] .ms-auto { margin-left: 0 !important; margin-right: auto !important; }
[dir="rtl"] .me-2 { margin-right: 0 !important; margin-left: 0.5rem !important; }
