.angie-calendar-container-f6eea4d2 {
    display: flex;
    gap: 22px;
    align-items: flex-start;
    flex-wrap: wrap;
}
.angie-calendar-main-col-f6eea4d2 {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}
.angie-calendar-wrapper-f6eea4d2 {
    width: 100%;
    min-width: 0;                               /* FIX: kein Überlauf aus schmalen Containern */
    max-width: 352px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 15px;
    font-family: sans-serif;
    box-shadow: 0 1px 5px rgba(0,0,0,0.05);
    box-sizing: border-box;
}
.angie-calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    gap: 10px;
}
.angie-cal-nav-btn {
    background: #e2e8f0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #4a5568;
    transition: all 0.2s ease;
    padding: 0;
    line-height: 1;
    touch-action: manipulation;
    flex-shrink: 0;
}
.angie-cal-nav-btn:hover {
    background: #cbd5e0;
}
.angie-cal-nav-btn:focus, 
.angie-cal-nav-btn:active {
    outline: none;
    background: #cbd5e0;
    box-shadow: 0 0 0 2px rgba(66, 153, 225, 0.5);
}
.angie-cal-select-wrap {
    flex-grow: 1;
    position: relative;
    min-width: 0;
}
.angie-cal-dropdown {
    width: 100%;
    padding: 6px 10px;
    font-size: 15px;
    font-weight: 500;
    color: #2d3748;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    background-color: #fff;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    text-overflow: ellipsis;
}
.angie-cal-dropdown:focus {
    border-color: #4299e1;
    box-shadow: 0 0 0 1px #4299e1;
}
.angie-cal-select-wrap::after {
    content: "▼";
    font-size: 10px;
    color: #4a5568;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}
.angie-cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: 600;
    font-size: 13px;
    color: #2d3748;
    margin-bottom: 10px;
    width: 100%;
}
.angie-cal-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    width: 100%;
}
.angie-cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.2s;
    touch-action: manipulation;                 /* FIX: Mobile tap */
    -webkit-tap-highlight-color: transparent;   /* FIX: iOS tap-delay */
    user-select: none;                          /* FIX: kein Text-Select auf Mobile */
}
.angie-cal-day.empty {
    cursor: default;
    background: transparent;
}
.angie-cal-day.avail {
    background-color: #DDFFCC;
    color: #333;
}
.angie-cal-day.avail:hover {
    background-color: #c0eaad;
}
.angie-cal-day.booked {
    background-color: #FFC0BD;
    color: #333;
    cursor: not-allowed;
}
.angie-cal-day.unavail {
    background-color: #003399;
    color: #fff;
    cursor: not-allowed;
}
.angie-cal-day.selected {
    border: 2px solid #2d3748;
    font-weight: bold;
}
.angie-calendar-selected-display {
    background: #f7fafc;
    border-radius: 4px;
    padding: 12px;
    font-family: sans-serif;
    font-size: 15px;
    border-left: 4px solid #2d3748;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
    box-sizing: border-box;
}
.angie-calendar-selected-display .label {
    color: #4a5568;
}
.angie-calendar-selected-display .value {
    font-weight: bold;
    color: #1a202c;
}
.angie-calendar-legend {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 15px;
    font-size: 14px;
    color: #4a5568;
}
.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}
.legend-item .box {
    width: 20px;
    height: 20px;
    border-radius: 3px;
    flex-shrink: 0;
}
.legend-item .box.avail { background-color: #DDFFCC; }
.legend-item .box.booked { background-color: #FFC0BD; }
.legend-item .box.unavail { background-color: #003399; }

/* Mobile: volle Breite im schmalen Container */
@media (max-width: 768px) {
    .angie-calendar-wrapper-f6eea4d2 {
        max-width: 100%;
    }
    .angie-calendar-container-f6eea4d2 {
        gap: 12px;
    }
}