/* --- Table.css --- */

/* Basis-Tabellenstil */
.table {
    width: 100%;
    border-collapse: collapse;
}

.table th,
.table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    align-items: center;
    justify-content: center;
}


.table th {
    background-color: #f8f9fa;
    font-weight: bold;
}

/* Tabellencontainer für Scroll-Ansicht */
.table-responsive {
    max-height: 500px;
    border-radius: 10px;
    overflow: auto;
}

/* Fixierter Header */
thead tr {
    position: sticky;
    top: 0;
    background-color: #f8f9fa;
    z-index: 1;
}

.ausstall-tabelle {
    border-collapse: collapse;
    width: 100%;
    font-size: 0.95rem;
}

.ausstall-tabelle th,
.ausstall-tabelle td {
    padding: 0.5rem 0.75rem;
    border-bottom: 1px solid #ddd;
    white-space: nowrap;
}

.ausstall-tabelle th {
    background-color: #f5f5f5;
    position: sticky;
    top: 0;
    z-index: 2;
    text-align: left;
    font-weight: 600;
}

.ausstall-tabelle td.text-right {
    text-align: right;
}

.ausstall-tabelle tr:hover {
    background-color: #f0f8ff;
}

/* Hinweis: Tabellen-Header wird beim Scrollen oben fixiert */
