/* =====================================================
   Minimal FullCalendar Styling for Kajak Booking Plugin
   Compatible with FullCalendar 6.x
   ===================================================== */

/* Kalender Höhe reduzieren */
#kajak-rental-calendar {
    min-height: 450px;
    max-height: 550px;
    padding: 10px;
    font-size: inherit;
}

#kajak-rental-calendar,
#kajak-rental-calendar * {
    font-family: inherit;
}

#kajak-resource-calendar{
    clear: both;
    display: block;
    overflow: visible; /* Wichtig, damit nichts abgeschnitten wird */
    margin: 40px auto;
    max-width: 1200px;
    
    /* ÄNDERUNG: */
    height: auto !important;     /* Entferne die 650px! */
    min-height: 500px;          /* Ein schöner Mindestwert */
    
    font-family: inherit;
    font-size: 1rem;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Zeit-Slots kleiner machen */
.fc-timegrid-slot {
    height: 5px !important;
}

/* Toolbar kompakter */
.fc-toolbar {
    padding: 5px !important;
    margin-bottom: 5px !important;
}

/* Titel etwas kleiner */
.fc-toolbar-title {
    font-size: 16px !important;
    font-weight: 600;
}

/* Event Text etwas kleiner */
.fc-event {
    font-size: 11px;
    padding: 1px 3px;
    border-radius: 6px;
}

.fc {
    font-display: swap;
}

.fc-highlight {
    background: rgba(0, 200, 0, 0.2) !important;
}
