.jagdzeiten-toolbar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0 16px;
    flex-wrap: wrap;
}
.jagdzeiten-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    table-layout: fixed;
}
.jagdzeiten-table th,
.jagdzeiten-table td {
    border: 1px solid #ddd;
    padding: 10px 12px;
    text-align: left;
    vertical-align: top;
}
.jagdzeiten-table th.col-zeitraum,
.jagdzeiten-table td.col-zeitraum {
    width: 170px;
    white-space: nowrap;
}
.jagdzeiten-table th.col-resttage,
.jagdzeiten-table td.col-resttage {
    width: 110px;
    white-space: nowrap;
}
.resttage-none {
    font-size: 0.9em;
    font-weight: normal;
    color: #666;
}
.jagdzeiten-table thead {
    background: #f4f4f4;
}
.jagdzeiten-section {
    background: #f4f4f4;
    font-weight: bold;
}
.jagdzeiten-note {
    font-size: 0.95em;
}
.jagdzeiten-muted {
    font-size: 1em;
}
.switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
}
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #c6d1c6;
    transition: 0.2s;
    border-radius: 999px;
}
.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 3px;
    top: 3px;
    background-color: white;
    transition: 0.2s;
    border-radius: 50%;
}
input:checked + .slider {
    background-color: #4a6b50;
}
input:checked + .slider:before {
    transform: translateX(24px);
}
@media (max-width: 768px) {
    .jagdzeiten-table {
        display: none;
    }
    .jagdzeiten-mobile {
        display: block;
    }
    .jagdzeiten-mobile-section {
        background: #f4f4f4;
        font-weight: bold;
        padding: 8px 10px;
        border-radius: 6px;
        margin: 12px 0 6px;
    }
    .jagdzeiten-card {
        border: 1px solid #e5e5e5;
        border-radius: 6px;
        padding: 10px 10px 6px;
        margin-bottom: 10px;
        background: #fff;
    }
    .jagdzeiten-card:nth-of-type(even) {
        background: #f8f4ed;
    }
    .jagdzeiten-card-title {
        font-weight: bold;
        margin-bottom: 6px;
    }
    .jagdzeiten-entry {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 4px 10px;
        padding: 6px 0;
        border-top: 1px solid #f0f0f0;
        align-items: center;
    }
    .jagdzeiten-entry:first-of-type {
        border-top: 0;
        padding-top: 2px;
    }
    .jagdzeiten-entry-text {
        min-width: 0;
    }
    .jagdzeiten-entry-klasse {
        font-size: 0.95em;
        color: #333;
    }
    .jagdzeiten-entry-zeitraum {
        font-size: 0.9em;
        color: #444;
    }
    .jagdzeiten-entry-resttage {
        white-space: nowrap;
        font-weight: bold;
        font-size: 0.9em;
    }
    .jagdzeiten-entry-resttage.resttage-none {
        font-weight: normal;
    }
    .jagdzeiten-entry-note {
        grid-column: 1 / 3;
        font-size: 0.85em;
        color: #555;
        margin-top: 2px;
        overflow-wrap: break-word;
        word-break: break-word;
        white-space: normal;
    }
}
.jagdzeiten-disclaimer {
    font-size: 0.9em;
    color: #555;
    margin: 10px 0 0;
}
