@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #0f172a;
    --secondary: #1e293b;
    --accent: #0ea5e9;
    --gold: #fbbf24;
    --glass-bg: rgba(15, 23, 42, 0.7);
    --glass-border: rgba(226, 232, 240, 0.1);
    --surface: #1e293b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #1a1f35 50%, #0f172a 100%);
    color: #f1f5f9;
    line-height: 1.6;
    background-attachment: fixed;
}

body.tourism-site {
    background:
        radial-gradient(circle at 8% 14%, rgba(245, 158, 11, 0.08), transparent 34%),
        radial-gradient(circle at 82% 20%, rgba(20, 184, 166, 0.07), transparent 32%),
        linear-gradient(135deg, #0f172a 0%, #1a1f35 50%, #0f172a 100%);
}

body.tourism-site .glass {
    border-color: rgba(245, 158, 11, 0.16);
}

body.tourism-site .tourism-page-hero {
    position: relative;
    overflow: hidden;
}

body.tourism-site .tourism-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 18% 30%, rgba(251, 191, 36, 0.08), transparent 40%),
        radial-gradient(circle at 78% 22%, rgba(45, 212, 191, 0.08), transparent 34%);
}

/* Normalize legacy cyan utility palette to tourism accent tones */
body.tourism-site .text-cyan-400 {
    color: #f59e0b !important;
}

body.tourism-site .text-cyan-300 {
    color: #fcd34d !important;
}

body.tourism-site .border-cyan-500\/20 {
    border-color: rgba(245, 158, 11, 0.24) !important;
}

body.tourism-site .border-cyan-500\/30,
body.tourism-site .border-cyan-500 {
    border-color: rgba(245, 158, 11, 0.38) !important;
}

body.tourism-site .bg-cyan-500\/20,
body.tourism-site .bg-cyan-500\/30 {
    background-color: rgba(245, 158, 11, 0.2) !important;
}

body.tourism-site .bg-gradient-to-r.from-cyan-500.to-blue-600 {
    background-image: linear-gradient(to right, #f59e0b, #ea580c) !important;
}

/* ============ GLASSMORPHISM ============ */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

.glass-sm {
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(226, 232, 240, 0.08);
    border-radius: 12px;
}

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1a1f35;
}

::-webkit-scrollbar-thumb {
    background: #0ea5e9;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #06b6d4;
}

/* ============ ANIMATIONS ============ */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(14, 165, 233, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(14, 165, 233, 0.6);
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============ UTILITIES ============ */
.transition-smooth {
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift {
    transition: all 300ms ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.2);
}

.tour-card-image {
    transform-origin: center;
    will-change: transform;
}

.group:hover .tour-card-image {
    animation: tourCardZoomCycle 1800ms cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

@keyframes tourCardZoomCycle {
    0% {
        transform: scale(1.08);
    }
    50% {
        transform: scale(1.14);
    }
    100% {
        transform: scale(1.08);
    }
}

@media (prefers-reduced-motion: reduce) {
    .group:hover .tour-card-image {
        animation: none;
    }
}

.text-accent {
    color: var(--accent);
}

.text-gold {
    color: var(--gold);
}

.underline-accent {
    position: relative;
    padding-bottom: 4px;
}

.underline-accent::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 300ms ease;
}

.underline-accent:hover::after {
    transform: scaleX(1);
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.line-clamp-4 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}

.line-clamp-5 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
}

/* ============ HERO RIGHT IMAGE SLIDER ============ */
.hero-tourism {
    --sunset: #f59e0b;
    --lagoon: #0ea5e9;
    --jungle: #16a34a;
}

.hero-tourist-tag {
    color: #fde68a;
    border: 1px solid rgba(245, 158, 11, 0.42);
    background: linear-gradient(90deg, rgba(124, 45, 18, 0.45), rgba(30, 41, 59, 0.38));
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.hero-title-highlight {
    background-image: linear-gradient(92deg, #f59e0b 0%, #f97316 45%, #22d3ee 100%);
}

.hero-route-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.hero-fact-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.72rem;
    border-radius: 9999px;
    border: 1px solid rgba(251, 191, 36, 0.34);
    background: rgba(15, 23, 42, 0.48);
    color: #fef3c7;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.hero-cta-primary {
    background: linear-gradient(90deg, #f59e0b 0%, #ea580c 100%);
    box-shadow: 0 10px 28px rgba(234, 88, 12, 0.35);
}

.hero-cta-primary:hover {
    box-shadow: 0 14px 34px rgba(234, 88, 12, 0.48);
}

.hero-cta-secondary {
    color: #f8fafc;
    border: 1px solid rgba(34, 211, 238, 0.45);
    background: linear-gradient(90deg, rgba(8, 47, 73, 0.5), rgba(15, 23, 42, 0.4));
}

.hero-cta-secondary:hover {
    background: linear-gradient(90deg, rgba(12, 74, 110, 0.6), rgba(30, 41, 59, 0.55));
}

.tourism-planning-section {
    background:
        radial-gradient(circle at 10% 20%, rgba(245, 158, 11, 0.08), transparent 42%),
        radial-gradient(circle at 85% 25%, rgba(20, 184, 166, 0.07), transparent 36%);
}

.planning-card {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.planning-kicker {
    color: #fdba74;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
    font-weight: 700;
}

.season-timeline {
    display: flex;
    flex-direction: column;
}

.season-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.7rem 0.75rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.season-months {
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    color: #cbd5e1;
    font-weight: 700;
}

.season-label {
    padding: 0.3rem 0.65rem;
    border-radius: 9999px;
    font-size: 0.78rem;
    font-weight: 700;
}

.season-label-sun {
    color: #fef3c7;
    background: rgba(245, 158, 11, 0.2);
    border: 1px solid rgba(245, 158, 11, 0.35);
}

.season-label-ocean {
    color: #cffafe;
    background: rgba(14, 165, 233, 0.2);
    border: 1px solid rgba(14, 165, 233, 0.35);
}

.season-label-jungle {
    color: #dcfce7;
    background: rgba(22, 163, 74, 0.18);
    border: 1px solid rgba(22, 163, 74, 0.33);
}

.season-label-sunset {
    color: #ffedd5;
    background: rgba(249, 115, 22, 0.2);
    border: 1px solid rgba(249, 115, 22, 0.33);
}

.format-card {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.9rem 0.95rem;
    border-radius: 0.85rem;
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: rgba(15, 23, 42, 0.46);
    transition: transform 260ms ease, border-color 260ms ease, background 260ms ease;
}

.format-card:hover {
    transform: translateY(-3px);
    border-color: rgba(34, 211, 238, 0.55);
    background: rgba(8, 47, 73, 0.42);
}

.format-emoji {
    font-size: 1.25rem;
}

.format-title {
    color: #ffffff;
    font-weight: 700;
}

.format-sub {
    color: #cbd5e1;
    font-size: 0.84rem;
}

.tourism-card {
    border: 1px solid rgba(148, 163, 184, 0.25);
    background: linear-gradient(165deg, rgba(15, 23, 42, 0.72), rgba(30, 41, 59, 0.55));
}

.tourism-card-body {
    min-height: 18.5rem;
}

.tourism-card-overlay {
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.1) 0%, rgba(2, 6, 23, 0.82) 100%);
}

.tourism-region {
    color: #f59e0b;
}

.tourism-price {
    color: #f59e0b;
}

.tourism-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tourism-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0.22rem 0.55rem;
    border-radius: 9999px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #e2e8f0;
    border: 1px solid rgba(148, 163, 184, 0.32);
    background: rgba(15, 23, 42, 0.45);
    transition: transform 180ms ease, border-color 220ms ease, background-color 220ms ease;
}

.tourism-card:hover .tourism-meta-item {
    transform: translateY(-2px);
    border-color: rgba(34, 211, 238, 0.5);
    background: rgba(8, 47, 73, 0.55);
}

.tourism-chip {
    padding: 0.35rem 0.62rem;
    border-radius: 9999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.tourism-chip-sun {
    color: #fef3c7;
    background: rgba(245, 158, 11, 0.24);
    border: 1px solid rgba(245, 158, 11, 0.45);
}

.tourism-chip-jungle {
    color: #dcfce7;
    background: rgba(22, 163, 74, 0.22);
    border: 1px solid rgba(22, 163, 74, 0.42);
}

.tourism-chip-rating {
    border: 1px solid rgba(125, 211, 252, 0.42);
}

.tourism-card-cta {
    border: 1px solid transparent;
}

.tourism-card-cta-primary {
    background: linear-gradient(90deg, #f59e0b 0%, #ea580c 100%);
    box-shadow: 0 10px 24px rgba(234, 88, 12, 0.33);
}

.tourism-card-cta-secondary {
    background: rgba(15, 23, 42, 0.55);
    border-color: rgba(34, 211, 238, 0.38);
}

.tourism-card-cta-secondary:hover {
    background: rgba(8, 47, 73, 0.5);
    border-color: rgba(34, 211, 238, 0.55);
}

.hero-side-circle {
    position: relative;
    width: min(76vw, 420px);
    height: min(76vw, 420px);
    border-radius: 9999px;
    border: 1px solid rgba(251, 191, 36, 0.45);
    outline: 2px solid rgba(255, 255, 255, 0.2);
    outline-offset: 8px;
    box-shadow: 0 18px 48px rgba(2, 6, 23, 0.45);
}

.hero-side-circle::after {
    content: '';
    position: absolute;
    inset: 0;
    transform: scaleY(0.04);
    transform-origin: center bottom;
    background: url('../../img/palm-circle.svg') center / 100% 100% no-repeat;
    opacity: 0;
    transition: transform 3000ms cubic-bezier(0.2, 0.72, 0.2, 1), opacity 320ms ease;
    will-change: transform, opacity;
    pointer-events: none;
    z-index: 3;
}

.group:hover .hero-side-circle::after,
.group:focus-within .hero-side-circle::after {
    transform: scaleY(1);
    opacity: 1;
}

@media (min-width: 1024px) {
    .hero-side-circle {
        width: min(36vw, 460px);
        height: min(36vw, 460px);
    }
}

.hero-bg-slider {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-bg-layer {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 900ms ease, transform 1300ms ease;
    filter: saturate(0.98) contrast(1.02);
}

.hero-bg-layer.is-active {
    opacity: 0.62;
    transform: scale(1);
}

.hero-side-image {
    transition: opacity 260ms ease, transform 900ms ease;
}

.hero-side-image.is-fading {
    opacity: 0.35;
}

.hero-copy-contrast {
    position: relative;
}

.hero-text-focus {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.hero-text-focus h1 {
    color: transparent;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1.2px rgba(255, 255, 255, 0.9);
    text-shadow: none;
}

.hero-text-focus h1 .hero-title-highlight {
    background: none !important;
}

.hero-text-focus p {
    color: #fff;
    text-shadow: none;
}

@media (max-width: 767px) {
    .hero-text-focus {
        padding: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-bg-layer,
    .hero-side-image {
        transition: none;
    }

    .tourism-meta-item {
        transition: none;
    }

    .tourism-card:hover .tourism-meta-item {
        transform: none;
    }
}

/* Logo text styling */
.logo-text {
    font-weight: 800;
    color: #ffffff;
    transition: all 0.3s ease;
}

.logo-text:hover {
    color: #22d3ee;
    text-shadow: 0 8px 24px rgba(34, 211, 238, 0.35);
}

/* Mobile menu panel (working variant) */
#mobile-menu.mobile-menu-panel {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    z-index: 1000;
    display: none;
    flex-direction: column;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    background: #0f172a;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
}

body.mobile-menu-open #mobile-menu {
    display: flex !important;
}

/* ============ BACK TO TOP BUTTON ============ */
.back-to-top {
    position: fixed;
    bottom: 60px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.5);
    transform: translateY(-5px);
}

/* ============ FOOTER ============ */
.footer-block {
    border-radius: 16px 16px 0 0;
}

.footer-nav a {
    transition: color 220ms ease, transform 220ms ease;
}

.footer-nav a:hover {
    transform: translateX(2px);
}

@media (max-width: 768px) {
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 40px;
        right: 20px;
    }
    
    .back-to-top svg {
        width: 20px;
        height: 20px;
    }
}

/* ============ LANGUAGE SWITCHER ============ */
#language-switcher {
    position: relative;
}

.flag-img {
    display: inline-block;
    vertical-align: middle;
    border-radius: 3px;
    object-fit: cover;
    flex-shrink: 0;
}

#lang-dropdown {
    min-width: 200px;
    max-height: 400px;
    overflow-y: auto;
}

#lang-dropdown::-webkit-scrollbar {
    width: 6px;
}

#lang-dropdown::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.5);
    border-radius: 3px;
}

#lang-dropdown::-webkit-scrollbar-thumb {
    background: rgba(14, 165, 233, 0.5);
    border-radius: 3px;
}

#lang-dropdown::-webkit-scrollbar-thumb:hover {
    background: rgba(14, 165, 233, 0.7);
}

.lang-option:active,
.mobile-lang-option:active {
    transform: scale(0.98);
}

/* Mobile language switcher adjustments */
@media (max-width: 1024px) {
    #mobile-language-switcher {
        margin-top: 12px;
        padding: 0 8px;
    }

    .language-switcher {
        display: flex;
        gap: 0.5rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .lang-flag-btn {
        cursor: pointer;
        will-change: transform, background-color;
    }

    .lang-flag-btn:active {
        transform: scale(0.95) !important;
    }
}

/* Active menu item styling */
.active-menu-item {
    position: relative;
}

.active-menu-item::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #0ea5e9 0%, #06b6d4 100%);
    border-radius: 1px;
}

@media (max-width: 1024px) {
    .active-menu-item,
    .active-menu-item::after {
        /* Mobile styling can be different if needed */
    }
}

/* BOOKING MODAL STYLES */
#booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

#booking-modal.hidden {
    display: none;
}

#booking-modal > div[data-backdrop] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
}

/* Modal dialog on top of backdrop */
#booking-modal > div:not([data-backdrop]) {
    position: fixed;
    z-index: 10001;
    /* Hide scrollbar for all browsers */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

/* Select field height fix */
#booking-modal select {
    height: 44px !important;
    line-height: 1 !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    vertical-align: middle !important;
    padding: 0.5rem 2.5rem 0.5rem 1rem !important;
    padding-right: 2.5rem !important;
}

/* Date input styling for white icons */
#booking-modal input[type="date"] {
    height: 44px !important;
    line-height: 1 !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    padding: 0.5rem 2.5rem 0.5rem 1rem !important;
    vertical-align: middle !important;
}

/* Calendar icon color - webkit browsers */
#booking-modal input[type="date"]::-webkit-calendar-picker-indicator {
    filter: brightness(0) invert(1) !important;
    cursor: pointer !important;
    opacity: 0.8 !important;
}

/* Firefox calendar icon */
#booking-modal input[type="date"]::-moz-calendar-picker-indicator {
    filter: brightness(0) invert(1) !important;
    cursor: pointer !important;
    opacity: 0.8 !important;
}

/* Hide webkit scrollbar (Chrome, Safari, Edge) */
#booking-modal > div:not([data-backdrop])::-webkit-scrollbar {
    display: none;
}

/* MOBILE RESPONSIVE STYLES */
@media (max-width: 768px) {
    /* Modal adjustments for tablets */
    #booking-modal > div:not([data-backdrop]) {
        max-width: 90vw !important;
        max-height: 85vh !important;
        top: 50% !important;
        left: 50% !important;
    }
}

@media (max-width: 640px) {
    /* Modal for mobile phones - full screen with margins */
    #booking-modal > div:not([data-backdrop]) {
        position: fixed !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        max-width: 100% !important;
        width: calc(100vw - 1.5rem) !important;
        max-height: 90vh !important;
        border-radius: 1rem !important;
    }

    /* Modal header - smaller padding and font size */
    #booking-modal > div:not([data-backdrop]) > div:first-child {
        padding: 1.5rem !important;
        flex-direction: column !important;
        gap: 1rem !important;
    }

    /* Modal header title - smaller on mobile */
    #booking-modal > div:not([data-backdrop]) > div:first-child h3 {
        font-size: 1.5rem !important;
    }

    /* Modal header subtitle */
    #booking-modal > div:not([data-backdrop]) > div:first-child p {
        font-size: 0.8rem !important;
    }

    /* Close button - larger touch target */
    #modal-close {
        width: 2.5rem !important;
        height: 2.5rem !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    /* Modal body - smaller padding */
    #booking-modal > div:not([data-backdrop]) > div:last-child {
        padding: 1.5rem !important;
    }

    /* Form grid items - single column on mobile */
    #booking-form > div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    #booking-form > div[style*="grid-template-columns: 1fr 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    /* Input fields - larger padding for easier touch */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="date"],
    input[type="number"],
    select,
    textarea {
        padding: 0.875rem 1rem !important;
        font-size: 1rem !important;
        min-height: 44px !important;
    }

    /* Form labels - smaller font size */
    label {
        font-size: 0.8rem !important;
        margin-bottom: 0.5rem !important;
    }

    /* Form group gaps */
    #booking-form {
        gap: 1.25rem !important;
    }

    /* Buttons - full width and larger touch targets */
    #booking-modal button {
        padding: 1rem !important;
        font-size: 0.95rem !important;
        min-height: 44px !important;
        border-radius: 0.75rem !important;
    }

    /* Submit buttons container */
    #booking-form > div[style*="display: flex; gap: 1rem"] {
        flex-direction: column !important;
        gap: 0.75rem !important;
        padding-top: 1rem !important;
    }

    /* Success message adjustments */
    #success-message {
        padding: 2rem 1rem !important;
    }

    #success-message h4 {
        font-size: 1.5rem !important;
    }

    #success-message p {
        font-size: 0.9rem !important;
    }

    /* Newsletter checkbox - better spacing */
    #booking-form > div[style*="display: flex; align-items: flex-start"] {
        padding: 0.75rem !important;
    }

    /* Checkbox size for touch */
    input[type="checkbox"] {
        width: 1.5rem !important;
        height: 1.5rem !important;
        min-width: 1.5rem !important;
    }
}

