/**
 * Fő stílusok - OLUSÓHÁZ Weboldal
 * Modern, letisztult, reszponzív design
 */

/* CSS Reset és alapbeállítások */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Mobil optimalizálás - Touch target méretek */
@media (max-width: 768px) {
    /* Minimum 44px touch target méret minden interaktív elemhez */
    button, 
    .btn, 
    input[type="submit"], 
    input[type="button"], 
    .nav-link, 
    .pagination-btn, 
    .pagination-number,
    .time-slot,
    .gallery-zoom-btn,
    .filter-btn {
        min-height: 44px;
        min-width: 44px;
        padding: 12px 16px;
    }
    
    /* Nagyobb touch target-ek kis gombokhoz */
    .btn-sm {
        min-height: 44px;
        padding: 12px 16px;
    }
    
    /* Swipe navigáció támogatás */
    .swipe-container {
        touch-action: pan-x;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Touch-friendly checkbox és radio gombok */
    input[type="checkbox"], 
    input[type="radio"] {
        width: 20px;
        height: 20px;
        margin: 12px;
    }
    
    /* Nagyobb tap area linkekhez */
    a {
        display: inline-block;
        min-height: 44px;
        line-height: 44px;
        padding: 0 8px;
    }
}

/* CSS változók - Színpaletta */
:root {
    /* Fő színek */
    --primary-color: #5c5e6b;
    --primary-light: #7a7e8f;
    --primary-dark: #464852;
    
    /* Szekunder színek */
    --secondary-color: #6b7a8c;
    --secondary-light: #8b9bac;
    --secondary-dark: #4a5666;
    
    /* Semleges színek */
    --text-primary: #2c3e50;
    --text-secondary: #555;
    --text-muted: #6c757d;
    --text-light: #ffffff;
    
    /* Háttér színek */
    --bg-primary: #f8f6f3;
    --bg-secondary: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #2c3e50;
    
    /* Border színek */
    --border-light: #e9ecef;
    --border-medium: #dee2e6;
    --border-dark: #5c5e6b;
    
    /* Állapot színek */
    --success-color: #28a745;
    --warning-color: #ffc107;
    --error-color: #dc3545;
    --info-color: #17a2b8;
    
    /* Árnyékok */
    --shadow-light: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-medium: 0 4px 8px rgba(0,0,0,0.15);
    --shadow-heavy: 0 8px 16px rgba(0,0,0,0.2);
    
    /* Áttűnés */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border radius */
    --radius-small: 4px;
    --radius-medium: 8px;
    --radius-large: 12px;
    --radius-round: 50%;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-xxl: 3rem;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--spacing-md);
    color: var(--text-secondary);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-normal);
}

a:hover {
    color: var(--primary-dark);
}

/* Container és layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

/* Grid rendszer */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 768px) {
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Flexbox utilities */
.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

/* Gombok */
.btn {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    border-radius: var(--radius-small);
    min-width: 120px;
    box-shadow: var(--shadow-light);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    min-width: auto;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* Alert üzenetek */
.alert {
    padding: 1rem;
    margin-bottom: 1rem;
    border-left: 4px solid;
    border-radius: 0;
}

.alert-success {
    background-color: #d4edda;
    border-left-color: #28a745;
    color: #155724;
}

.alert-error {
    background-color: #f8d7da;
    border-left-color: #dc3545;
    color: #721c24;
}

.alert-warning {
    background-color: #fff3cd;
    border-left-color: #ffc107;
    color: #856404;
}

.alert-info {
    background-color: #d1ecf1;
    border-left-color: #17a2b8;
    color: #0c5460;
}

/* Form elemek */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 0;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #5c5e6b;
    box-shadow: 0 0 0 2px rgba(92, 94, 107, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

/* Kártyák */
.card {
    background-color: #ffffff;
    border-radius: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-header {
    padding: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    background-color: #f8f9fa;
}

.card-body {
    padding: 1.5rem;
}

.card-footer {
    padding: 1rem 1.5rem;
    background-color: #f8f9fa;
    border-top: 1px solid #f0f0f0;
}

/* Táblázatok */
.table-responsive {
    overflow-x: auto;
}

.table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
}

.table th,
.table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}

.table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.table tbody tr:hover {
    background-color: #f8f9fa;
}

/* Státusz címkék */
.status {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 0;
}

.status-pending {
    background-color: #fff3cd;
    color: #856404;
}

.status-confirmed {
    background-color: #d4edda;
    color: #155724;
}

.status-cancelled {
    background-color: #f8d7da;
    color: #721c24;
}

.status-completed {
    background-color: #d1ecf1;
    color: #0c5460;
}

/* Utility osztályok */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-muted { color: #6c757d; }
.text-primary { color: #5c5e6b; }
.text-success { color: #28a745; }
.text-error { color: #dc3545; }
.text-warning { color: #ffc107; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

.hidden { display: none; }
.visible { display: block; }

/* Loading spinner */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #5c5e6b;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive design */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 13px;
    }
    
    .container {
        padding: 0 0.75rem;
    }
    
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
}

/* Print stílusok */
@media print {
    .btn,
    .alert,
    .card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .btn {
        background-color: transparent !important;
        color: #000 !important;
        border: 1px solid #000 !important;
    }
    
    .hidden-print {
        display: none !important;
    }
}

/* Pagináció stílusok */
.pagination-container {
    margin-top: 3rem;
    text-align: center;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.pagination-btn {
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    color: #6c757d;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.pagination-btn:hover {
    background: #5c5e6b;
    border-color: #5c5e6b;
    color: white;
    transform: translateY(-1px);
}

.pagination-numbers {
    display: flex;
    gap: 0.25rem;
    align-items: center;
}

.pagination-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    color: #6c757d;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.pagination-number:hover {
    background: #e9ecef;
    border-color: #5c5e6b;
    color: #5c5e6b;
}

.pagination-number.active {
    background: #5c5e6b;
    border-color: #5c5e6b;
    color: white;
}

.pagination-ellipsis {
    padding: 0 0.5rem;
    color: #6c757d;
    font-weight: 500;
}

.pagination-info {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Responsive pagináció */
@media (max-width: 768px) {
    .pagination {
        flex-wrap: wrap;
        gap: 0.25rem;
    }
    
    .pagination-numbers {
        order: 2;
        width: 100%;
        justify-content: center;
        margin: 0.5rem 0;
    }
    
    .pagination-btn {
        order: 1;
        flex: 1;
        max-width: 120px;
    }
    
    .pagination-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles */
.btn:focus,
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus,
a:focus {
    outline: 2px solid #5c5e6b;
    outline-offset: 2px;
}

/* Animációk */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

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

.slide-in-left {
    animation: slideInLeft 0.5s ease-out;
}

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

.slide-in-right {
    animation: slideInRight 0.5s ease-out;
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Hero slider stílusok */
.hero-slider {
    position: relative;
    overflow: hidden;
    height: 500px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease-in-out;
    display: flex;
    align-items: center;
    background: #5c5e6bad;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-slide:first-child {
    opacity: 1;
    transform: translateX(0);
}

.hero-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 10;
}

.hero-prev,
.hero-next {
    background: rgba(92, 94, 107, 0.9);
    color: #ffffff;
    border: 2px solid rgba(92, 94, 107, 0.9);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-prev:hover,
.hero-next:hover {
    background: rgba(70, 72, 82, 1);
    color: #ffffff;
    border-color: rgba(70, 72, 82, 1);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.hero-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.hero-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(70, 72, 82, 0.7);
    border: 2px solid rgba(92, 94, 107, 0.9);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.hero-dots .dot.active {
    background: #5c5e6b;
    border-color: #5c5e6b;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
}

.hero-dots .dot:hover {
    background: #5c5e6b;
    border-color: #5c5e6b;
    transform: scale(1.2);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
}

/* Responsive slider */
@media (max-width: 1200px) {
    .hero-slider {
        height: 400px;
    }
    
    .hero-navigation {
        padding: 0 1rem;
    }
    
    .hero-prev,
    .hero-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* MOBIL: Elrejtjük a jelenlegi slidert és a hero szekciót */
@media (max-width: 768px) {
    .hero,
    .hero-slider,
    .hero-navigation,
    .hero-dots {
        display: none !important;
    }
    
    /* Hero szekció helyén lévő üres hely eltávolítása */
    section.hero {
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
    }
}

/* ========================================
   MOBIL SLIDER - Modern Design
   ======================================== */

.mobile-slider {
    display: none;
    border-radius: 16px;
    margin: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    position: relative;
    margin-top: 0; /* Üres hely eltávolítása */
}

@media (max-width: 768px) {
    .mobile-slider {
        display: block;
    }
}

.mobile-slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.mobile-slide {
    display: none;
    padding: 0;
    color: #2c3e50;
    position: relative;
    background: white;
    border-radius: 16px;
    overflow: hidden;
}

.mobile-slide.active {
    display: flex;
    flex-direction: column;
}

/* Kép szekció */
.mobile-slide-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.mobile-slide-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(to top, white, transparent);
}

.mobile-slide-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-slide h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    color: #2c3e50;
    text-align: center;
}

.mobile-slide p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    color: #6c757d;
    text-align: center;
    max-height: 120px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #5c5e6b transparent;
}

.mobile-slide p::-webkit-scrollbar {
    width: 4px;
}

.mobile-slide p::-webkit-scrollbar-track {
    background: transparent;
}

.mobile-slide p::-webkit-scrollbar-thumb {
    background: #5c5e6b;
    border-radius: 2px;
}

.mobile-slide p::-webkit-scrollbar-thumb:hover {
    background: #464852;
}

.mobile-slide-actions {
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.mobile-slide .btn {
    flex: 1;
    min-width: 120px;
    max-width: 160px;
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
}

.mobile-slide .btn-primary {
    background: #5c5e6b;
    color: white;
    box-shadow: 0 2px 8px rgba(92, 94, 107, 0.3);
}

.mobile-slide .btn-primary:hover {
    background: #464852;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(92, 94, 107, 0.4);
}

.mobile-slide .btn-outline {
    background: transparent;
    color: #5c5e6b;
    border: 2px solid #5c5e6b;
}

.mobile-slide .btn-outline:hover {
    background: #5c5e6b;
    color: white;
    transform: translateY(-1px);
}

/* Mobil slider navigáció */
.mobile-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    z-index: 10;
    pointer-events: none;
}

.mobile-slider-nav button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #5c5e6b;
    border: none;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    pointer-events: auto;
}

.mobile-slider-nav button:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.mobile-slider-nav button:active {
    transform: scale(0.95);
}

/* Mobil slider indikátorok */
.mobile-slider-indicators {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.mobile-slider-indicators .indicator {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(92, 94, 107, 0.4);
    border: 1px solid rgba(92, 94, 107, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    transform: scale(0.5);
}

.mobile-slider-indicators .indicator.active {
    background: #5c5e6b;
    border-color: #5c5e6b;
    transform: scale(0.7);
    box-shadow: 0 2px 6px rgba(92, 94, 107, 0.4);
}

.mobile-slider-indicators .indicator:hover {
    background: #5c5e6b;
    border-color: #5c5e6b;
    transform: scale(0.6);
}

/* Auto-play indikátor eltávolítva */

/* Touch swipe támogatás */
.mobile-slider-container {
    touch-action: pan-y pinch-zoom;
    user-select: none;
}

/* Animációk */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.mobile-slide.slide-in-right {
    animation: slideInRight 0.5s ease-out;
}

.mobile-slide.slide-in-left {
    animation: slideInLeft 0.5s ease-out;
}

/* Extra kis képernyők optimalizálása */
@media (max-width: 480px) {
    .mobile-slide-image {
        height: 160px;
    }
    
    .mobile-slide-content {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .mobile-slide h2 {
        font-size: 1.3rem;
    }
    
    .mobile-slide p {
        font-size: 0.9rem;
        max-height: 100px;
    }
    
    .mobile-slide .btn {
        min-width: 100px;
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }
    
    .mobile-slider-nav button {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
    
    .mobile-slider-indicators .indicator {
        width: 12px;
        height: 12px;
        transform: scale(0.4);
    }
    
    .mobile-slider {
        margin: 0.5rem;
        border-radius: 12px;
    }
}
