/* ================================
   Planzer Materialvermietung Calendar
   ================================ */

.planzer-calendar {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    color: #1e1e1e;
}

/* Header */
.planzer-calendar h2 {
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 600;
}

/* Navigation */
.planzer-calendar .nav {
    margin-bottom: 15px;
    font-size: 14px;
}

.planzer-calendar .nav a {
    text-decoration: none;
    color: #a60d1f;
    font-weight: 500;
}

.planzer-calendar .nav a:hover {
    text-decoration: underline;
}

/* Grid */
.planzer-calendar .calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}

/* Day cell */
.planzer-calendar .day {
    min-height: 130px;
    padding: 6px;
    border: 1px solid #dcdcdc;
    background: #ffffff;
    box-sizing: border-box;
}

/* Day number */
.planzer-calendar .day strong {
    display: block;
    font-size: 13px;
    margin-bottom: 4px;
    color: #555;
}

/* Events */
.planzer-calendar .event {
    margin-top: 4px;
    padding: 4px 6px;
    background: #fff4f6;
    border-left: 4px solid #a60d1f;
    font-size: 12px;
    line-height: 1.3;
    border-radius: 2px;
    word-break: break-word;
}

/* Empty days (optional future use) */
.planzer-calendar .day.empty {
    background: #f7f7f7;
}

/* Responsive */
@media (max-width: 900px) {
    .planzer-calendar .calendar {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .planzer-calendar .calendar {
        grid-template-columns: 1fr;
    }
}
