/**
 * Wapster FeWo-Manager Styling (fewowidget.css) - Erweiterte Version
 */
.fewo-calendar-container {
    margin: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #333333;
}

.fewo-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.fewo-hero-img {
    height: 250px;
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid #e0e0e0;
}

.fewo-thumbnails img {
    transition: opacity 0.2s ease;
}
.fewo-thumbnails img:hover {
    opacity: 0.8;
}

.fewo-body {
    padding: 25px;
}

.fewo-title {
    margin: 0 0 10px 0;
    font-size: 1.6rem;
    color: #222222;
    font-weight: 700;
}

.fewo-meta-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: #666666;
    font-size: 0.95rem;
    flex-wrap: wrap;
}

.fewo-details {
    margin-bottom: 20px;
    color: #444444;
    line-height: 1.6;
    background: #fafafa;
    padding: 15px;
    border-radius: 6px;
    border-left: 4px solid #007bff;
    font-size: 0.95rem;
}

.fewo-extras-box {
    margin-bottom: 20px;
}

/* Flexbox-Grid für die Monate */
.fewo-months-grid {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.fewo-month-box {
    flex: 1;
    min-width: 280px;
    background: #fff;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 6px;
}

.fewo-month-title {
    text-align: center;
    margin: 0 0 12px 0;
    font-size: 1.1rem;
    color: #444444;
    font-weight: 600;
}

/* Kalender-Tabelle */
.fewo-calendar-table {
    width: 100%;
    border-collapse: collapse;
}

.fewo-calendar-table th {
    text-align: center;
    padding: 6px;
    font-size: 0.85rem;
    color: #888888;
    font-weight: normal;
    border-bottom: 1px solid #eeeeee;
}

.fewo-calendar-table td {
    text-align: center;
    padding: 10px 0;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid #ffffff;
}

/* Frei vs. Belegt vs. Gewählt Styles */
.day-free {
    background-color: #e6f4ea;
    color: #137333;
    transition: background 0.2s;
}
.day-free:hover {
    background-color: #ceead6;
}

.day-booked {
    background-color: #fce8e6;
    color: #c5221f;
    text-decoration: line-through;
}

.empty-day {
    background: transparent;
}

/* Legende */
.fewo-legend {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    font-size: 0.85rem;
    color: #555555;
    align-items: center;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.legend-item .box {
    width: 14px;
    height: 14px;
    border-radius: 3px;
}

.legend-item .box.free {
    background-color: #e6f4ea;
    border: 1px solid #b7e1cd;
}

.legend-item .box.booked {
    background-color: #fce8e6;
    border: 1px solid #fad2cf;
}

.legend-item .box.selected {
    background-color: #007bff;
    border: 1px solid #0056b3;
}

/* Buchungsformular Box */
.fewo-booking-form-box {
    margin-top: 25px;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.fewo-submit-form input[type="text"],
.fewo-submit-form input[type="email"] {
    width: 100%;
    padding: 8px 12px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 0.95rem;
}

.fewo-book-btn {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}
.fewo-book-btn:hover {
    background: #0056b3;
}