.fs-einsaetze {
    background: #f9f9f9;
    border-left: 4px solid #cc0000;
    padding: 1.5em;
    border-radius: 6px;
    font-family: "Segoe UI", sans-serif;
    margin-bottom: 2em;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.fs-einsaetze h2 {
    font-size: 1.8em;
    margin-top: 0;
    margin-bottom: 1em;
    border-bottom: 2px solid #eee;
    padding-bottom: 0.2em;
}

.fs-einsaetze-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95em;
    background: white;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.fs-einsaetze-table thead {
    background-color: #f0f0f0;
}

.fs-einsaetze-table th,
.fs-einsaetze-table td {
    text-align: left;
    padding: 0.75em 1em;
    border-bottom: 1px solid #eee;
}

.fs-einsaetze-table th {
    font-weight: 600;
    color: #444;
    text-transform: uppercase;
    font-size: 0.85em;
    letter-spacing: 0.05em;
}

.fs-einsaetze-table tr:last-child td {
    border-bottom: none;
}

.fs-einsaetze-table tbody tr:hover {
    background-color: #fafafa;
    transition: background 0.2s ease-in-out;
}

@media (max-width: 768px) {
    .fs-einsaetze-table thead {
        display: none;
    }

    .fs-einsaetze-table tr {
        display: block;
        margin-bottom: 1em;
        border: 1px solid #ddd;
        border-radius: 6px;
        padding: 1em;
        background: white;
    }

    .fs-einsaetze-table td {
        display: block;
        text-align: right;
        position: relative;
        padding-left: 50%;
    }

    .fs-einsaetze-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 1em;
        width: 45%;
        text-align: left;
        font-weight: bold;
        color: #666;
        text-transform: uppercase;
        font-size: 0.75em;
    }
}
.fs-einsaetze-wrapper {
    margin: 1em 0;
    padding: 1em;
    background: #f9f9f9;
    border-left: 4px solid #d00;
}

.fs-einsaetze-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.fs-einsaetze-table th,
.fs-einsaetze-table td {
    padding: 0.5em 1em;
    border-bottom: 1px solid #ddd;
    text-align: left;
}

.fs-einsaetze-table th {
    background-color: #eee;
    font-weight: bold;
}

.fs-einsatz-zeile:hover {
    background-color: #fafafa;
    cursor: pointer;
}
.fs-pager {
    margin-top: 1em;
    text-align: center;
}

.fs-page-link {
    margin: 0 0.25em;
    padding: 0.5em 0.75em;
    background: #eee;
    border-radius: 4px;
    text-decoration: none;
    color: #000;
}

.fs-page-link.active,
.fs-page-link.fs-current {
    background: #d00;
    color: #fff;
}


.fs-einsatz-details {
    
    margin: 2em auto;
    padding: 1em;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.fs-einsatz-title {
    text-align: center;
    margin-bottom: 1em;
}

.fs-einsatz-tabelle {
    width: 100%;
    border-collapse: collapse;
}

.fs-einsatz-tabelle th {
    text-align: left;
    padding: 0.5em;
    width: 30%;
    color: #333;
}

.fs-einsatz-tabelle td {
    padding: 0.5em;
    border-bottom: 1px solid #eee;
}

.fs-fahrzeug {
    display: flex;
    align-items: center;
    margin-bottom: 0.3em;
}

.fs-fahrzeug-icon {
    width: 40px;
    height: auto;
    margin-right: 0.5em;
    border-radius: 4px;
}

.fs-einsatz-back {
    margin-top: 2em;
    text-align: center;
}

.fs-zurueck-link {
    color: #cc0000;
    text-decoration: none;
    font-weight: bold;
}
.fahrzeuge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* gewünschter Abstand */
    margin: 0; /* kein zusätzliches neg. Margin nötig */
    align-items: stretch;
}

.fahrzeug-card-wrapper {
   flex: 0 1 260px; /* drei gleiche Karten mit 4px gap */
    display: flex; /* damit .fahrzeug-card sich strecken kann */
}

.fahrzeug-card {
    width: 100%;
    /* bestehende Styles bleiben erhalten */
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.2s ease;
    margin: 0; /* Abstand über gap der Eltern */
    min-height: 230px;
}

.fahrzeug-card:hover {
    transform: scale(1.03);
}

.fahrzeug-bild {
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fahrzeug-bild img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.fahrzeug-name {
    margin-top: 10px;
    font-size: 1rem;
    text-align: center;
    color: #000;
    word-wrap: break-word;
}


.fs-plugin-credit {
    margin: 1.5rem auto 0;
    font-size: 0.75rem;
    text-align: center;
    color: #666;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    max-width: 100%; /* sicherstellen, dass es nicht zusammengedrückt wird */
    display: block;
}

.fs-plugin-credit a {
    text-decoration: none;
    color: inherit;
    font-weight: 600;
}


.fslst-stats-grid {
  border-radius: 8px;
}
.fslst-number {
  transition: transform .2s ease;
}
.fslst-number:after {
  content: "";
}

/* Container, der nicht umbricht */
.fs-status-line {
  white-space: nowrap;
}

/* Icon 24×24 und vertikal zentriert */
.fs-status-icon {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  margin-left: 0.5em;
  display: inline;
}

