/**
 * @package     Joomla.Plugin
 * @subpackage  Content.Jtf
 *
 * EasyVerein Booking Calendar Styles
 * Uses UIkit variables and utilities where possible
 *
 * @copyright   (C) 2025 FS Rheinkamp. All rights reserved.
 * @license     GNU General Public License version 3 or later
 */

/* Calendar Wrapper */
.jtf-easyverein-booking {
    position: relative;
}

/* Calendar Container */
.jtf-easyverein-calendar {
    display: none;
    position: absolute;
    z-index: 1000;
    min-width: 320px;
    max-width: 100%;
}

.jtf-easyverein-calendar .jtf-calendar {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* Calendar Header */
.jtf-calendar-header {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 10px;
}

/* Day Cells */
.jtf-day {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 14px;
    transition: all 0.15s ease;
}

.jtf-day-empty {
    visibility: hidden;
}

/* Available Days */
.jtf-day-available {
    cursor: pointer;
    color: #333;
}

.jtf-day-available:hover {
    background-color: #f0f0f0;
}

/* Today */
.jtf-day-today {
    font-weight: bold;
    border: 2px solid #1e87f0;
}

/* Selected Day */
.jtf-day-selected {
    background-color: #1e87f0 !important;
    color: #fff !important;
}

/* Blocked Days */
.jtf-day-blocked {
    background-color: #f0506e;
    color: #fff;
    cursor: not-allowed;
    opacity: 0.8;
}

.jtf-day-blocked:hover {
    opacity: 1;
}

/* Past Days */
.jtf-day-past {
    color: #999;
    cursor: not-allowed;
}

/* Legend */
.jtf-easyverein-legend {
    padding-top: 10px;
    border-top: 1px solid #e5e5e5;
}

.jtf-easyverein-legend details summary {
    outline: none;
}

.jtf-easyverein-legend details summary::-webkit-details-marker {
    display: none;
}

.jtf-easyverein-legend details summary::before {
    content: '▶ ';
    font-size: 0.7em;
    margin-right: 5px;
}

.jtf-easyverein-legend details[open] summary::before {
    content: '▼ ';
}

/* Responsive */
@media (max-width: 640px) {
    .jtf-easyverein-calendar {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 95%;
        max-width: 350px;
    }

    .jtf-day {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
}
