@charset "UTF-8";
/*------------------------------------------------------------------
[Convention Schedule & Program Planner – WordPress Event Management Plugin Digital Signage Monitor Module Stylesheet]

Project:        Convention Schedule & Program Planner – WordPress Event Management
Version:        1.7.0
Author:         LitteraNovix
Primary use:    Event Management & Display

Table of Contents:

1. MAIN APP CONTAINER (Fullscreen Logic)
2. HERO SECTION (Current Event Display)
3. UPCOMING SECTION (Upcoming Events List)
4. INTERACTIVE ELEMENTS (Fullscreen Button)
5. Split-Screen Monitor Layout
6. RESPONSIVE LOGIC (Portrait & Landscape Fixes)
7. KEYFRAME ANIMATIONS (Monitor Essentials)
-------------------------------------------------------------------*/


/* =========================================
   1. MAIN APP CONTAINER (FULLSCREEN LOGIC)
   ========================================= */
   
html body .ec-event-calendar-app .ec-monitor-app .ec-loader-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}
   
html body .ec-event-calendar-app .ec-monitor-app {
    width: 100vw;
    height: 100vh;
    background: #000;
    font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #fff;
    overflow: hidden; /* Scrollbalken Killer */
    line-height: 1.2;
    position: fixed; /* Fixiert Position für F11 */
    top: 0;
    left: 0;
    z-index: 9999;
    /* Macht den Monitor zum Sensor für seine eigene Breite */
    container-type: inline-size;
    container-name: ec-monitor-container;
}

/* Wenn der Monitor in einem Split-Paneel steckt, darf er nicht fixiert sein */
html body .ec-event-calendar-app .ec-monitor-split-pane .ec-monitor-app {
    position: relative;
    width: 100%;
    height: 100%;
    top: auto;
    left: auto;
    z-index: 1;
}

/* Versteckt den doppelten Fullscreen-Button nur ab dem zweiten Paneel */
html body .ec-event-calendar-app .ec-monitor-split-pane:not(:first-child) #ec-fullscreen-btn {
    display: none;
}

html body .ec-event-calendar-app .ec-monitor-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

/* Split-Paneel: Durchreichen der 100% Höhe in den verschachtelten Container (verhindert Höhen-Kollaps des 1. Raums) */
html body .ec-event-calendar-app .ec-monitor-split-pane > .ec-event-calendar-app {
    width: 100%;
    height: 100%;
    display: block;
}

/* =========================================
   2. HERO SECTION (CURRENT EVENT DISPLAY)
   ========================================= */
   
/* --- OBERE SEKTION (HERO) - 70% Höhe --- */
html body .ec-event-calendar-app .ec-monitor-hero {
    flex: 0 0 70%; /* Fixe Höhe 70% */
    height: 70%;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 4vw; /* Responsive Padding */
    box-sizing: border-box;
}

html body .ec-event-calendar-app .ec-monitor-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

html body .ec-event-calendar-app .ec-monitor-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Live Badge mit Animation */
html body .ec-event-calendar-app .ec-monitor-live-badge {
    position: absolute;
    top: 40px;
    right: 40px;
    background: #d63638;
    color: #fff;
    font-size: 2.2rem;
    font-weight: 800;
    padding: 10px 25px;
    border-radius: 6px;
    text-transform: uppercase;
    box-shadow: 0 0 30px rgba(214, 54, 56, 0.8);
    z-index: 5;
    animation: ec-mon-blink 2s infinite ease-in-out;
}



html body .ec-event-calendar-app .ec-monitor-cat {
    background: var(--ec-mon-primary, #f76b15);
    color: #fff;
    padding: 5px 15px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-block;
    margin-bottom: 20px;
}

/* Titel - Max 3 Zeilen mit ... */
html body .ec-event-calendar-app .ec-monitor-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 40px 0;
    color: #fff;
    text-shadow: 0 4px 15px rgba(0,0,0,0.9);
}

/* Helper für Titel-Kürzung */
html body .ec-event-calendar-app .ec-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

html body .ec-event-calendar-app .ec-monitor-meta-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

html body .ec-event-calendar-app .ec-mon-meta-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.4rem;
    max-width: 300px;
}

/* --- ICON --- */
html body .ec-event-calendar-app .ec-mon-meta-item .ec-icon-svg {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background-color: #fff; /* !important entfernt */
    -webkit-mask-size: contain; mask-size: contain;
    -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
    -webkit-mask-position: center; mask-position: center;
}

html body .ec-event-calendar-app .ec-monitor-hero {
    background-image: var(--ec-hero-url);
    background-size: cover;
    background-position: center;
    position: relative;
    /* Hier weitere statische Werte falls nötig */
}

/* Explizite Zuordnung der Icons für den Monitor */
html body .ec-event-calendar-app .ec-monitor-app .ec-icon-clock { -webkit-mask-image: url("../icons/icon-clock.svg"); mask-image: url("../icons/icon-clock.svg"); }
html body .ec-event-calendar-app .ec-monitor-app .ec-icon-location { -webkit-mask-image: url("../icons/icon-location.svg"); mask-image: url("../icons/icon-location.svg"); }
html body .ec-event-calendar-app .ec-monitor-app .ec-icon-person { -webkit-mask-image: url("../icons/icon-person.svg"); mask-image: url("../icons/icon-person.svg"); }
html body .ec-event-calendar-app .ec-monitor-app .ec-icon-language { -webkit-mask-image: url("../icons/icon-language.svg"); mask-image: url("../icons/icon-language.svg"); }


/* =========================================
   3. UPCOMING SECTION (UPCOMING EVENTS LIST)
   ========================================= */
   
/* --- UNTERE SEKTION (UPCOMING) - 30% Höhe --- */
html body .ec-event-calendar-app .ec-monitor-upcoming {
    flex: 0 0 30%; /* Fixe Höhe 30% des Bildschirms */
    height: 30%;
    background: #fff;
    color: #333;
    /* WICHTIG: Padding nur links/rechts, oben/unten macht die 50% Rechnung kaputt */
    padding: 0 4vw; 
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    border-top: 8px solid var(--ec-mon-primary, #f76b15);
    overflow: hidden; 
    position: relative;
}

html body .ec-event-calendar-app .ec-monitor-section-title {
    line-height: 1.2; 
    font-size: clamp(0.85rem, 5cqi, 1.1rem); 
    font-weight: 800;
    text-transform: uppercase;
    color: #666;
    margin: 10px 0 5px 0; 
    letter-spacing: 0.5px;
    flex-shrink: 0;
    
    /* Begrenzt die Überschrift auf max. 2 Zeilen mit ... am Ende */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Badge Raumname Start - nur im Splitscreen */
/* Container für den Badge (Höhe 0, liegt immer exakt auf der Kante) */
html body .ec-event-calendar-app .ec-monitor-badge-wrapper {
    height: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 9999;
}

html body .ec-event-calendar-app .ec-monitor-venue-badge {
    display: none; 
}

html body .ec-event-calendar-app .ec-monitor-split-pane .ec-monitor-venue-badge {
    display: block;
    position: absolute;
    /* Da die kommende Liste einen 8px dicken Rand hat, schiebt top: 4px die Mitte genau darauf */
    top: 4px; 
    transform: translateY(-50%); 
    
    background: var(--ec-mon-primary, #f76b15);
    color: #fff;
    padding: 4px 16px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    pointer-events: none;
}
/* Badge Raumname Ende */

/* Badge Raumname - immer anzeigen. */
/* Container für den Badge (Höhe 0, liegt immer exakt auf der Kante) */
/* wenn immer anzeigen, dann oberen Code Badge Raumname Start - nur im Splitscreen löschen oder auskommentieren 
/* 
html body .ec-event-calendar-app .ec-monitor-badge-wrapper {
    height: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 9999;
}

html body .ec-event-calendar-app .ec-monitor-venue-badge {
    display: block;
    position: absolute;
    top: 4px;
    transform: translateY(-50%); 
    
    background: var(--ec-mon-primary, #f76b15);
    color: #fff;
    padding: 4px 16px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    pointer-events: none;
}
*/
/* --- Badge Raumname Ende - immer anzeigen --- */

html body .ec-event-calendar-app .ec-monitor-list-wrapper {
    flex: 1; /* Flexbox regelt den restlichen Platz nun völlig automatisch */
    display: flex;
    flex-direction: column;
    overflow: hidden; 
    position: relative;
    padding: 0;
    margin: 0;
}

html body .ec-event-calendar-app .ec-monitor-row {
    flex: 0 0 50%;       /* Nimmt exakt 50% der Wrapper-Höhe ein */
    height: 50%;         /* Zwingt die Höhe */
    max-height: 50%;
    
    display: flex;
    align-items: center;
    box-sizing: border-box; /* Padding wird in die 50% eingerechnet */
    
    /* Abstände werden per Padding geregelt */
    padding: 0 20px 0 0; 
    margin: 0;
    border-bottom: 1px solid #eee;
    
    gap: 30px;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Verhindert doppelte Ränder beim letzten sichtbaren Element */
html body .ec-event-calendar-app .ec-monitor-row:nth-child(2) {
    border-bottom: none;
}

html body .ec-event-calendar-app .ec-monitor-row {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    height: 50%; /* Erzwingt, dass genau 2 Reihen reinpassen */
    box-sizing: border-box;
    
    gap: 30px;            /* Abstand zwischen Uhrzeit (links) und Text (rechts) */
    padding-right: 20px;  /* Abstand zum rechten Bildschirmrand */   
    opacity: 1;
}

html body .ec-event-calendar-app .ec-monitor-row.ec-mon-hidden {
    display: none; 
}

html body .ec-event-calendar-app .ec-mon-time-wrap {
    width: 120px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

html body .ec-event-calendar-app .ec-mon-time {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--ec-mon-primary, #f76b15);
    line-height: 1;
}

html body .ec-event-calendar-app .ec-mon-date {
    font-size: 0.95rem;
    font-weight: 700;
    color: #888;
    margin-top: 4px;
    letter-spacing: 0.02em;
}

html body .ec-event-calendar-app .ec-mon-info {
    flex: 1;
    overflow: hidden; /* Für Ellipsis */
	min-width: 0;
}

html body .ec-event-calendar-app .ec-mon-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #222;
    /* Erlaubt bis zu 2 Zeilen */
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

html body .ec-event-calendar-app .ec-mon-sub {
    font-size: 1.1rem;
    color: #666;
    margin-top: 4px;
    white-space: nowrap; 
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

html body .ec-event-calendar-app .ec-mon-sub span { margin-right: 15px; display: inline-block; }

/* Pause Screen */
html body .ec-event-calendar-app .ec-monitor-pause { 
    text-align: center; margin-bottom: 100px; 
}

html body .ec-event-calendar-app .ec-mon-sep {
    opacity: 0.5;
    margin: 0 5px;
}

/* Empty State (Keine Veranstaltungen) zentrieren */
html body .ec-event-calendar-app .ec-monitor-empty {
    flex: 1;                      /* Nimmt den gesamten verfügbaren Platz nach unten ein */
    display: flex;
    align-items: center;          /* Vertikal zentrieren */
    justify-content: center;      /* Horizontal zentrieren */
    text-align: center;
    font-size: 1.5rem;
    color: #888;                  /* Etwas dezenteres Grau */
    font-style: italic;           /* Optisch abgesetzt (wie im regulären Ticker) */
    padding: 20px;
}

/* =========================================
   4. INTERACTIVE ELEMENTS (FULLSCREEN BUTTON)
   ========================================= */


html body .ec-event-calendar-app #ec-fullscreen-btn {
    /* 1. Positionierung & Layer */
    position: absolute;             
    top: 20px;                      
    left: 20px;                    
    z-index: 999999;               

    /* 2. Theme-Styles "neutralisieren" */
    width: 50px;                    
    height: 50px;                   
    min-width: 50px;                
    background-color: rgba(0, 0, 0, 0.5); 
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 8px;             
    color: #fff;                    
    
    /* 3. Inhalt zentrieren */
    padding: 0;                   
    margin: 0;                     
    display: flex;                 
    align-items: center;            
    justify-content: center;       
    
    /* 4. Verhalten */
    cursor: pointer;                
    box-shadow: none;              
    pointer-events: auto;          
    transition: all 0.3s ease;     
}


html body .ec-event-calendar-app #ec-fullscreen-btn svg {
    width: 28px;                 
    height: 28px;                 
    stroke: #fff;                  
    fill: none;                    
    display: block;               
    pointer-events: none; 
}

/* Hover-Effekt */
html body .ec-event-calendar-app #ec-fullscreen-btn:hover {
    background-color: rgba(255, 255, 255, 0.3); /* !important gelöscht */
    transform: scale(1.1);
}


/* Wenn Vollbild aktiv ist, Button verstecken */

:fullscreen .ec-event-calendar-app #ec-fullscreen-btn, 

:-webkit-full-screen .ec-event-calendar-app #ec-fullscreen-btn {
    display: none !important;
}

/* Standard */

:fullscreen .ec-event-calendar-app #ec-fullscreen-btn {
    display: none !important;
}

/* Firefox (auch Mobile) */

:-moz-full-screen .ec-event-calendar-app #ec-fullscreen-btn {
    display: none !important;
}


/* Chrome / Safari / Android Webkit */

:-webkit-full-screen .ec-event-calendar-app #ec-fullscreen-btn {
    display: none !important;
}



/* Microsoft / Edge (Legacy) */

:-ms-fullscreen .ec-event-calendar-app #ec-fullscreen-btn {

    display: none !important;

}

/* =========================================
   5. Split-Screen Monitor Layout
   ========================================= */

/* Split-Screen Monitor Layout */
html body .ec-event-calendar-app .ec-monitor-split-wrapper {
    display: flex;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

html body .ec-event-calendar-app .ec-monitor-split-pane {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-right: 2px solid rgba(255,255,255,0.1);
}

html body .ec-event-calendar-app .ec-monitor-split-pane:last-child {
    border-right: none;
}

/* Skalierungs-Anpassungen für Paneele */
html body .ec-event-calendar-app .ec-monitor-split-pane .ec-monitor-wrapper {
    padding: 2cqi; /* Nutzt Container-Breite statt Bildschirm-Breite */
}

html body .ec-event-calendar-app .ec-monitor-split-pane .ec-monitor-title {
    /* cqi reagiert auf die Breite des Splits, nicht des Monitors */
    font-size: clamp(1.2rem, 6cqi, 2.8rem);
}

html body .ec-event-calendar-app .ec-monitor-split-pane .ec-monitor-hero {
    height: 55%;
}



/* =========================================
   6. RESPONSIVE LOGIC (MOBILE FIXES)
   ========================================= */

@container ec-monitor-container (max-width: 768px) {

  /* --- HERO BEREICH (Oben) --- */
html body .ec-event-calendar-app .ec-monitor-hero {
    flex: 0 0 65%; 
    height: 65%;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    padding-bottom: 30px;
  }

/* Titel im Hero */
  html body .ec-event-calendar-app .ec-monitor-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
    line-height: 1.1;
  }

  /* Badges */
html body .ec-event-calendar-app .ec-monitor-cat {
    font-size: 0.9rem;
    margin-bottom: 10px;
    padding: 4px 10px;
  }
html body .ec-event-calendar-app .ec-monitor-live-badge {
    font-size: 1.8rem;
    padding: 5px 15px;
    top: 15px;
    right: 15px;
  }

  /* Metadaten-Grid */
  html body .ec-event-calendar-app .ec-monitor-meta-grid {
    gap: 12px;
    display: flex;
    flex-wrap: wrap; 
    width: 100%;
  }

html body .ec-event-calendar-app .ec-mon-meta-item {
    font-size: 0.95rem;
    gap: 8px;
    width: calc(50% - 10px); 
    min-width: 140px;
    margin-bottom: 5px;
    align-items: flex-start;
  }

html body .ec-event-calendar-app .ec-mon-meta-item .ec-icon-svg {
    width: 22px;
    height: 22px;
    min-width: 22px;
    margin-top: 2px;
  }

  /* --- UPCOMING BEREICH (Unten - Optimiert) --- */
  
html body .ec-event-calendar-app .ec-monitor-upcoming {
    flex: 0 0 35%;
    height: 35%;
    padding: 15px 20px;
  }

html body .ec-event-calendar-app .ec-monitor-section-title {
    font-size: 1.0rem;
    margin-bottom: 10px;
    opacity: 0.8;
  }

html body .ec-event-calendar-app .ec-monitor-row {
    padding: 10px 0;
    gap: 15px;
    align-items: flex-start;
  }

/* Uhrzeit & Datum (Mobile) */
  html body .ec-event-calendar-app .ec-mon-time-wrap {
    width: 80px;
    flex-shrink: 0;
    margin-top: 2px;
  }
  html body .ec-event-calendar-app .ec-mon-time {
    font-size: 1.4rem;
    line-height: 1.1;
  }
  html body .ec-event-calendar-app .ec-mon-date {
    font-size: 0.75rem;
    margin-top: 2px;
  }

/* Titel (Maximal 2 Zeilen) */
  html body .ec-event-calendar-app .ec-mon-title {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.2;
    
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

/* Details (Erzwingt exakt 1 Zeile) */
  html body .ec-event-calendar-app .ec-mon-sub {
    font-size: 1.0rem;
    margin-top: 4px;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
  }

/* Details (Vergrößert) */
  html body .ec-event-calendar-app .ec-mon-sub {
    font-size: 1.0rem;
    margin-top: 4px;
    line-height: 1.3;
  }
  
}



/* =========================================
   MONITOR VIEW LANDSCAPE FIX (ALIGNMENT FIX)
   Gilt für: Breite bis 1180px, aber wenig Höhe (max 600px)
   ========================================= */
@media screen and (max-width: 1180px) and (orientation: landscape) and (max-height: 600px) {

/* --- 1. HERO BEREICH (Oben) --- */
  html body .ec-event-calendar-app .ec-monitor-hero {
    flex: 0 0 62%;
    height: 62%;
    /* Unten 25px Platz zur Linie */
    padding: 10px 20px 25px 20px; 
    align-items: flex-end; 
    display: flex;
  }
  
/* Titel: Sicherstellen, dass er links bleibt */
  html body .ec-event-calendar-app .ec-monitor-title {
    font-size: 2.1rem;
    margin-bottom: 15px;
    line-height: 1.0;
    margin-left: 0; 
    padding-left: 0;
  }

/* Badges */
  html body .ec-event-calendar-app .ec-monitor-live-badge {
    font-size: 1.8rem;
    padding: 4px 8px;
    top: 8px;
    right: 10px;
  }
  html body .ec-event-calendar-app .ec-monitor-cat {
    font-size: 0.9rem;
    padding: 2px 6px;
    margin-bottom: 4px;
  }

/* --- METADATEN GRID --- */
  html body .ec-event-calendar-app .ec-monitor-meta-grid {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    
    /* 1. Alles hart nach links schieben */
    justify-content: flex-start; 
    
    /* 2. Versteckte Abstände killen */
    margin: 0;
    padding: 0;
    margin-left: 0;
    padding-left: 0;
    border: none;
    
    gap: 4px 15px; 
  }

/* Falls das Theme Pseudo-Elemente einfügt: Hier behalten wir !important 
     als Ausnahme, da wir "Fremdkörper" entfernen müssen */
  html body .ec-event-calendar-app .ec-monitor-meta-grid::before,
  html body .ec-event-calendar-app .ec-monitor-meta-grid::after {
      display: none !important;
      content: none !important;
  }

/* Einzelne Items */
  html body .ec-event-calendar-app .ec-mon-meta-item {
    font-size: 1.0rem;
    gap: 10px;
    align-items: center;
    line-height: 1.1;
    width: auto;
    
    /* Erstes Item muss ganz links kleben */
    margin-left: 0;
    padding-left: 0;
  }


/* --- 2. UPCOMING BEREICH (Unten) --- */

/* Raumbadge Höhenkorrektur */
html body .ec-event-calendar-app .ec-monitor-split-pane .ec-monitor-venue-badge {
    top: -8px; 
    }
/* Raumbadge Höhenkorrektur Ende */

  html body .ec-event-calendar-app .ec-monitor-upcoming {
    flex: 0 0 38%;
    height: 38%;
    padding: 0 20px;
    border-top-width: 4px;
    display: flex;
    flex-direction: column;
    overflow: hidden; 
  }

/* Überschrift bleibt weg */
  html body .ec-event-calendar-app .ec-monitor-section-title {
    display: none;
  }

/* Der Wrapper muss die volle Höhe nutzen */
  html body .ec-event-calendar-app .ec-monitor-list-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

/* DIE ROW: Exakt 50% Höhe pro Eintrag */
  html body .ec-event-calendar-app .ec-monitor-row {
    flex: 0 0 50%;       
    height: 50%;         
    max-height: 50%;
    
    padding: 0;          
    gap: 15px;
    
    align-items: center; 
    border-bottom: 1px solid #eee;
    box-sizing: border-box;
  }
  
/* Letzten Strich entfernen */
  html body .ec-event-calendar-app .ec-monitor-row:nth-child(2) {
      border-bottom: none;
  }

/* Große Schrift unten inkl. Datum */
  html body .ec-event-calendar-app .ec-mon-time-wrap {
    width: 75px;
    flex-shrink: 0;
  }
  html body .ec-event-calendar-app .ec-mon-time {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
  }
  html body .ec-event-calendar-app .ec-mon-date {
    font-size: 0.8rem;
    margin-top: 2px;
  }
  
html body .ec-event-calendar-app .ec-mon-title {
    font-size: 1.25rem;
    margin-bottom: 2px;
    font-weight: 700;
    line-height: 1.2;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
html body .ec-event-calendar-app .ec-mon-sub {
    display: block;
    font-size: 0.95rem;
    line-height: 1.1;
    color: #555;
    margin-top: 0;
    opacity: 1;
    visibility: visible;
  }
}


/* =========================================
   7. KEYFRAME ANIMATIONS
   ========================================= */
   
@keyframes ec-mon-blink {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.98); } 
    100% { opacity: 1; transform: scale(1); }
}



