/* ==========================================================================
   1. GLOBÁLIS BEÁLLÍTÁSOK, ARCULATI VÁLTOZÓK ÉS BETŰTÍPUSOK
   ========================================================================== */

@font-face {
    font-family: 'Foglihten';
    src: url('../fonts/foglihten.otf') format('opentype');
    font-display: swap;
}

@font-face {
    font-family: 'GruenewaldVA';
    src: url('../fonts/GruenewaldVA.otf') format('opentype');
    font-display: swap;
}

@font-face {
    font-family: 'Ritalin';
    src: url('../fonts/ritalin.otf') format('opentype');
    font-display: swap;
}

:root {
    --deep-brown: #401a14;   /* Mélybarna főszín */
    --topaz-blue: #bcd3ff;   /* Felnőtt kiemelések, naptár kék */
    --kiwi-green: #90c24a;   /* Gyermekkönyvtár zöld */
    --bg-white: #ffffff;     /* Tiszta fehér */
    --text-dark: #222222;    /* Szövegszín */
    
    /* Akadálymentesítési alapértelmezett szorzó */
    --font-multiplier: 1.0;
}

/* --- AKADÁLYMENTESÍTÉSI OSZTÁLYOK (ÁTÍRJÁK A VÁLTOZÓKAT) --- */

/* Diszlexia-barát betűtípus */
body.dyslexic-font {
    font-family: 'Comic Sans MS', 'Chalkboard SE', Arial, sans-serif !important;
}

/* Linkek kiemelése */
body.underline-links a {
    text-decoration: underline !important;
    text-decoration-thickness: 3px !important;
    text-decoration-color: #ff0000 !important;
    font-weight: bold !important;
}

/* Nagy kontrasztú nézet (Fekete-Sárga) */
body.high-contrast {
    background-color: #000000 !important;
    color: #ffff00 !important;
}
body.high-contrast * {
    background-color: transparent !important;
    color: #ffff00 !important;
    border-color: #ffff00 !important;
}
body.high-contrast a {
    color: #ffd700 !important;
}

/* Invertált nézet */
body.invert-colors {
    filter: invert(100%);
    background-color: #000;
}
body.invert-colors img, 
body.invert-colors video {
    filter: invert(100%);
}

/* --- ALAP STÍLUSOK --- */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: var(--text-dark);
    background-color: #fcfcfc;
    line-height: 1.6;
    --base-font-size: 16px;
    font-size: var(--base-font-size);
    transition: background-color 0.2s, color 0.2s;
}

.main-library-theme { background-color: #fcfcfc; }
.child-library-theme { background-color: #f7f9f4; }

h1, h2, h3 {
    font-family: 'Foglihten', serif;
    color: var(--deep-brown);
}

.child-library-theme h1, 
.child-library-theme h2, 
.child-library-theme h3 {
    font-family: 'Ritalin', sans-serif;
}

.site-main-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Dinamikus méretezés a szöveges elemekre */
p, span, td, a, li, time {
    font-size: calc(1rem * var(--font-multiplier));
}


/* ==========================================================================
   SAJÁT LEBEGŐ AKADÁLYMENTESÍTŐ GOMB ÉS PANEL STÍLUSA
   ========================================================================== */

.custom-accessibility-trigger {
    position: fixed;
    top: 120px;
    right: 20px;
    width: 55px;
    height: 55px;
    background-color: #4caf50;
    border: 2px solid #388e3c;
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: transform 0.2s, background-color 0.2s;
}

.custom-accessibility-trigger:hover {
    transform: scale(1.08);
    background-color: #45a049;
}

.custom-accessibility-trigger .checkmark-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: #1b5e20;
    color: #fff;
    font-size: 0.65rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1.5px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accessibility-popup-panel {
    position: fixed;
    top: 190px;
    right: -350px;
    width: 300px;
    background-color: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    z-index: 9998;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    font-family: sans-serif;
}

.accessibility-popup-panel.panel-open {
    right: 20px;
}

.accessibility-popup-panel .panel-header {
    background-color: #1e293b;
    color: #ffffff;
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accessibility-popup-panel .panel-header h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #ffffff;
    font-family: sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
}

.accessibility-popup-panel .close-panel-btn {
    background: transparent;
    border: none;
    color: #94a3b8;
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
}
.accessibility-popup-panel .close-panel-btn:hover {
    color: #ffffff;
}

.accessibility-popup-panel .panel-body {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.panel-control-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.panel-control-group .group-title {
    font-size: 0.85rem;
    font-weight: bold;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.panel-control-group .button-row {
    display: flex;
    gap: 6px;
}

.panel-control-group .button-row button {
    flex: 1;
    background-color: #f8fafc;
    border: 1px solid #cbd5e1;
    color: #334155;
    padding: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s;
}

.panel-control-group .button-row button:hover {
    background-color: #f1f5f9;
    border-color: #94a3b8;
}

.panel-control-group .button-row.text-buttons {
    flex-direction: column;
}

.panel-control-group .button-row.text-buttons button {
    text-align: left;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.panel-control-group button.active-toggle {
    background-color: #4caf50 !important;
    color: #ffffff !important;
    border-color: #388e3c !important;
}


/* ==========================================================================
   2. REZSPONZÍV FEJLÉC ÉS TÖBBSZINTŰ NAVIGÁCIÓ
   ========================================================================== */

.site-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: var(--bg-white);
    border-bottom: 2px solid var(--deep-brown);
    position: relative;
    z-index: 100;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-area img {
    height: 50px;
    width: auto;
    display: block;
}

.library-name {
    font-size: calc(1.5rem * var(--font-multiplier));
    font-weight: bold;
    color: var(--deep-brown);
    font-family: 'Foglihten', serif;
    line-height: 1.2;
}

.hamburger-toggle {
    display: flex; 
    flex-direction: column; 
    justify-content: space-between;
    width: 30px; 
    height: 21px; 
    background: transparent; 
    border: none; 
    cursor: pointer; 
    padding: 0; 
    z-index: 101;
}

@media (min-width: 992px) {
    .hamburger-toggle { display: none; }
}

.hamburger-toggle .bar { 
    width: 100%; 
    height: 3px; 
    background-color: var(--deep-brown); 
    transition: all 0.3s; 
}

.hamburger-toggle.active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger-toggle.active .bar:nth-child(2) { opacity: 0; }
.hamburger-toggle.active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* --- Mobil Menü Alapértelmezés --- */
.main-nav {
    display: none; 
    position: absolute; 
    top: 100%; 
    left: 0; 
    width: 100%;
    background-color: var(--bg-white); 
    border-bottom: 2px solid var(--deep-brown);
    padding: 15px 0; 
    box-shadow: 0 10px 15px rgba(0,0,0,0.05); 
    max-height: 80vh; 
    overflow-y: auto;
}
.main-nav.active { display: block; }

.menu-list { 
    display: flex; 
    flex-direction: column; 
    list-style: none; 
}

.menu-item { 
    width: 100%; 
    position: relative; 
}

.menu-link, .dropdown-link {
    font-family: 'Foglihten', serif; 
    font-size: calc(1.2rem * var(--font-multiplier)); 
    color: var(--deep-brown);
    text-decoration: none; 
    padding: 12px 20px; 
    display: block; 
}

.dropdown-link {
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: calc(1.05rem * var(--font-multiplier));
}

.arrow { 
    font-size: 0.7rem; 
    margin-left: 5px; 
    display: inline-block; 
    transition: transform 0.3s; 
}

.dropdown-menu {
    display: none; 
    list-style: none; 
    background-color: rgba(188, 211, 255, 0.1);
    padding-left: 15px;
}

.menu-item.open > .dropdown-menu { display: block; }
.menu-item.open > a > .arrow { transform: rotate(180deg); }

/* --- Asztali Menü Beállítások (992px felett) --- */
@media (min-width: 992px) {
    .main-nav {
        display: block; position: static; width: auto; border: none; padding: 0; box-shadow: none; overflow: visible;
    }
    .menu-list { flex-direction: row; gap: 5px; }
    .menu-item { width: auto; }
    
    .menu-link { 
        padding: 10px 15px; 
        display: inline-flex !important;
        align-items: center !important;
        white-space: nowrap !important;
    }
    .menu-link:hover { color: white; background-color: var(--deep-brown); border-radius: 4px; }

    .menu-item .dropdown-menu {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: var(--bg-white);
        min-width: 220px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        border: 1px solid rgba(64, 26, 20, 0.1);
        border-radius: 4px;
        padding: 5px 0;
        opacity: 0;
        visibility: hidden;
        transition: all 0.25s ease;
        padding-left: 0;
    }

    .menu-item:hover > .dropdown-menu {
        opacity: 1;
        visibility: visible;
    }

    .dropdown-menu .menu-item { position: relative !important; }

    .dropdown-menu .dropdown-menu {
        top: 0 !important;
        left: 100% !important;
        margin-top: 0 !important;
    }

    .dropdown-link {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
    
    .dropdown-link:hover { background-color: rgba(188, 211, 255, 0.2); }
    
    .dropdown-menu .arrow {
        float: none !important;
        transform: rotate(-90deg) !important;
        margin-top: 0 !important;
        margin-left: 10px !important;
    }
    .dropdown-menu .menu-item.open > a > .arrow { transform: rotate(-90deg); }
}

@media (max-width: 600px) {
    .library-name { font-size: calc(1.1rem * var(--font-multiplier)); }
}


/* ==========================================================================
   3. HERO SLIDER
   ========================================================================== */

.hero-slider {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.slider-wrapper { width: 100%; height: 100%; position: relative; }

.slide {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: opacity 0.6s ease-in-out;
}
.slide.active { opacity: 1; visibility: visible; }

.slide-content { text-align: center; color: #fff; padding: 0 20px; }
.slide-content h2 { color: #fff; font-size: calc(2.5rem * var(--font-multiplier)); text-shadow: 2px 2px 8px rgba(0,0,0,0.8); }
.slide-content p { font-size: calc(1.2rem * var(--font-multiplier)); text-shadow: 1px 1px 4px rgba(0,0,0,0.7); font-family: sans-serif; }

.slider-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(64, 26, 20, 0.6); color: white; border: none;
    font-size: 1.5rem; padding: 10px 15px; cursor: pointer; border-radius: 4px; z-index: 10;
}
.slider-arrow.prev { left: 15px; }
.slider-arrow.next { right: 15px; }

.slider-dots { position: absolute; bottom: 15px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.slider-dots .dot { width: 10px; height: 10px; background: rgba(255, 255, 255, 0.5); border-radius: 50%; cursor: pointer; }
.slider-dots .dot.active { background: #fff; }

@media (max-width: 768px) {
    .hero-slider { height: 240px; }
    .slide-content h2 { font-size: calc(1.6rem * var(--font-multiplier)); }
    .slide-content p { font-size: calc(0.95rem * var(--font-multiplier)); }
}


/* ==========================================================================
   4. TARTALMI STRUKTÚRA
   ========================================================================== */

.page-container {
    display: grid;
    grid-template-columns: 1fr 280px; 
    gap: 30px;
    align-items: start;
}

.main-content-area {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.calendar-events-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    width: 100%;
}

.konyvajanlo-main-wrapper {
    width: 100%;
}


/* ==========================================================================
   5. NAPTÁR STÍLUSOK
   ========================================================================== */

.monthly-calendar-section {
    background: var(--bg-white);
    border: 1px solid rgba(64, 26, 20, 0.1);
    border-radius: 6px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.calendar-header-nav { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.calendar-current-month { font-size: calc(1.6rem * var(--font-multiplier)); margin: 0; }
.calendar-nav-btn { text-decoration: none; color: white; background: var(--deep-brown); padding: 5px 12px; border-radius: 4px; }

.calendar-grid-container {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
    background-color: #f1f1f1;
    padding: 3px;
    border-radius: 4px;
}

.calendar-day-name { background: var(--bg-white); text-align: center; padding: 8px 0; font-weight: bold; }
.calendar-day-name.text-sunday { color: #c0392b; }

.calendar-cell {
    background: var(--bg-white);
    height: 70px;
    padding: 4px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;
}
.calendar-cell.empty { background: #fafafa; }
.calendar-cell.today { border: 2px solid var(--deep-brown); background: #fffbf9; }

.day-number { font-family: sans-serif; font-weight: bold; color: #444; margin-bottom: 2px; }

.calendar-cell-events { display: flex; flex-direction: column; gap: 2px; }
.calendar-event-badge {
    border-radius: 3px; padding: 1px 3px; font-family: sans-serif;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
    cursor: pointer;
}
.calendar-event-badge.badge-main { background: var(--topaz-blue); color: #1e3a8a; }
.calendar-event-badge.badge-child { background: var(--kiwi-green); color: #1e3a1a; }
.calendar-event-badge .c-time { font-weight: bold; margin-right: 2px; }


/* ==========================================================================
   6. KÖZELGŐ PROGRAMOK (KÁRTYÁK)
   ========================================================================== */

.events-sidebar {
    background: var(--bg-white);
    border: 1px solid rgba(64, 26, 20, 0.1);
    border-radius: 6px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.sidebar-title { font-size: calc(1.5rem * var(--font-multiplier)); margin-bottom: 15px; }
.sidebar-events-list { display: flex; flex-direction: column; gap: 12px; }

.compact-event-card {
    border: 1px solid #edf2f7; border-radius: 6px; overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s; background: var(--bg-white);
}
.compact-event-card:hover { transform: translateX(3px); box-shadow: 0 4px 10px rgba(0,0,0,0.05); }

.compact-date-badge {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    width: 60px; min-width: 60px; color: var(--deep-brown); font-family: 'Foglihten', serif;
}
.event-card-main .compact-date-badge { background-color: var(--topaz-blue); }
.event-card-child .compact-date-badge { background-color: var(--kiwi-green); }

.c-month { font-size: calc(0.75rem * var(--font-multiplier)); text-transform: uppercase; }
.c-day { font-size: calc(1.25rem * var(--font-multiplier)); font-weight: bold; line-height: 1; }

.compact-details { padding: 10px; display: flex; flex-direction: column; justify-content: center; }
.compact-meta { color: #666; font-family: sans-serif; }


/* ==========================================================================
   7. KÖNYVAJÁNLÓ BLOKK
   ========================================================================== */

.book-recommendation-section { 
    width: 100%; 
}

.section-title-container { margin-bottom: 20px; }
.section-title { font-size: calc(1.6rem * var(--font-multiplier)); color: var(--deep-brown); margin-bottom: 6px; }
.title-underline { width: 50px; height: 3px; background-color: var(--deep-brown); border-radius: 2px; }

.books-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.book-card {
    background: var(--bg-white); border-radius: 6px; border: 1px solid #e2e8f0;
    overflow: hidden; display: flex; flex-direction: column;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.book-cover-wrapper {
    width: 100%; height: 240px; background: #fafafa;
    display: flex; align-items: center; justify-content: center; padding: 10px;
}
.book-cover { height: 100%; width: auto; object-fit: contain; }

.book-info { padding: 15px; display: flex; flex-direction: column; flex-grow: 1; }
.book-category { font-weight: bold; color: #0284c7; text-transform: uppercase; margin-bottom: 4px; font-family: sans-serif; }
.book-title { font-weight: bold; color: #1e293b; margin-bottom: 2px; line-height: 1.2; }
.book-author { color: #64748b; font-style: italic; margin-bottom: 10px; font-family: sans-serif; }
.book-description {
    color: #475569; line-height: 1.5; margin-bottom: 15px;
    display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
    font-family: sans-serif;
}

.book-btn {
    margin-top: auto; background-color: var(--deep-brown); color: var(--bg-white);
    text-align: center; padding: 8px 0; border-radius: 4px; text-decoration: none;
    font-weight: bold; font-family: sans-serif; transition: opacity 0.2s;
}
.book-btn:hover { opacity: 0.9; }


/* ==========================================================================
   8. JOBB OLDALSÁV ÉS NYITVATARTÁS
   ========================================================================== */

.site-sidebar { display: flex; flex-direction: column; gap: 20px; }

.social-links-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-dark);
    transition: opacity 0.2s;
}
.social-item:hover { opacity: 0.8; }

.social-text {
    font-size: 0.95rem;
    font-weight: 500;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #475569;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-row-simple {
    display: flex;
    gap: 15px;
    margin-top: 5px;
}

.fb-bold:hover { background: #1877f2 !important; color: #fff !important; }
.ig-bold:hover { background: #d6249f !important; color: #fff !important; }
.yt-bold:hover { background: #ff0000 !important; color: #fff !important; }

.opening-hours-book {
    background: #fffdfa; border: 1px solid #e2dcd5; padding: 15px; border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.02); font-family: 'Georgia', serif;
}
.status-indicator { text-align: center; padding: 5px; font-weight: bold; border-radius: 4px; margin-bottom: 12px; }
.status-closed { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.status-open { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.status-info { background: #e8e522; color: #040505; border: 2px solid #ee4f05; }

.opening-table { width: 100%; border-collapse: collapse; }
.table-title { font-size: calc(1rem * var(--font-multiplier)); padding-bottom: 8px; color: #5a4a42; text-align: center; }
.day-name, .hours-value { padding: 4px 0; }
.hours-value { text-align: right; }
.current-day td { font-weight: bold; color: #000; }

.right-badge-png { width: 100%; height: auto; object-fit: contain; border-radius: 4px; margin-top: 5px; display: block; }


/* ==========================================================================
   9. LÁBJEGYZET (FOOTER)
   ========================================================================== */

.site-footer { background-color: var(--deep-brown); color: #ffffff; margin-top: 50px; padding: 30px 0 15px 0; width: 100%; }
.footer-info h3 { color: #fff; margin-bottom: 12px; font-size: calc(1.4rem * var(--font-multiplier)); }
.footer-info p { margin-bottom: 6px; color: #e2e8f0; font-family: sans-serif; }


/* ==========================================================================
   10. MOBIL ÉS TABLET NÉZETRE VALÓ OPTIMALIZÁLÁS
   ========================================================================== */

@media (max-width: 991px) {
    .page-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .calendar-events-layout {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .books-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .books-grid {
        grid-template-columns: 1fr;
    }
    
    .calendar-cell {
        height: auto;
        min-height: 45px;
    }
    .calendar-event-badge {
        width: 6px; height: 6px; padding: 0; border-radius: 50%; display: inline-block; margin: 2px auto 0 auto;
    }
    .calendar-event-badge .c-time, 
    .calendar-event-badge .c-title {
        display: none !important; 
    }
    .calendar-cell-events {
        flex-direction: row; justify-content: center;
    }
}


/* ==========================================================================
   11. GALÉRIA RÁCS ÉS KÁRTYÁK
   ========================================================================== */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); 
    gap: 15px;
    margin-top: 15px;
    width: 100%;
}

.gallery-card {
    background: #fff;
    padding: 5px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

.gallery-card:hover {
    transform: scale(1.05);
}

.gallery-card img {
    width: 100%;
    height: 250px; 
    object-fit: cover;
    border-radius: 6px;
    cursor: zoom-in;
    display: block;
}


/* ==========================================================================
   NAGYOBB ESEMÉNYJELÖLŐ PÖTTYÖK ÉS HOVER (JAVÍTOTT)
   ========================================================================== */

.calendar-cell.has-events {
    background-color: #f0f7ff;
}

.calendar-cell.has-events.cancelled-event {
    background-color: #fdf2f2;
}

.event-indicator {
    display: block;
    width: 10px; 
    height: 10px; 
    background-color: #0284c7;
    border-radius: 50%;
    margin-top: 4px;
    cursor: pointer;
}

.cancelled-event .event-indicator {
    background-color: #dc2626;
}

/* Mobilos nézet méretmódosítása */
@media (max-width: 650px) {
    .calendar-cell-events {
        flex-direction: row; 
        justify-content: center;
        gap: 3px;
    }
    
    .calendar-cell .event-indicator {
        display: inline-block !important;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        margin: 2px 1px;
    }
}