/* Obal pro horizontální scroll */
.tabulatrix-scroll-wrapper {
    width: 100%;
    overflow-x: auto;
    background-color: #0d1117;
    padding: 1rem;
    border-radius: 8px;
}

/* Tabulka */
.tabulatrix-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
    background-color: #161b22;
    color: #c9d1d9;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border-radius: 6px;
    overflow: hidden;
}

/* Hlavička */
.tabulatrix-thead {
    background-color: #0d1117;
    position: sticky;
    top: 0;
    z-index: 2;
}

.tabulatrix-header-cell {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #21262d;
    white-space: nowrap;
    text-align: left;
    font-weight: bold;
    color: #c9d1d9;
}

/* Tělo */
.tabulatrix-row {
    transition: background 0.2s ease;
}

.tabulatrix-row:hover {
    background-color: #21262d;
}

.tabulatrix-cell {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #21262d;
    white-space: nowrap;
    vertical-align: middle;
}

/* Bootstrap tlačítka uvnitř buněk */
.tabulatrix-cell .btn {
    margin-left: 0.5rem;
    vertical-align: middle;
}

/* Responsivní úpravy */
@media (max-width: 768px) {

    .tabulatrix-header-cell,
    .tabulatrix-cell {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {

    .tabulatrix-header-cell,
    .tabulatrix-cell {
        font-size: 0.8rem;
        padding: 0.4rem;
    }
}