﻿.table-container {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: #3b4e75;
    border: 1px solid #121010;
}

th,
td {
    text-align: center;
    padding: 10px;
    color: #ffffff;
    border: 1px solid #121010;
}

th {
    color: #ffff00;
}

tr:nth-child(even) {
    background-color: #3d65b5;
}

@media (max-width: 768px) {
    table {
        font-size: 14px;
    }

    th,
    td {
        padding: 8px;
    }
}

@media (max-width: 480px) {
    table,
    thead,
    tbody,
    th,
    td,
    tr {
        display: block;
    }

    thead {
        display: none;
    }

    tr {
        margin-bottom: 10px;
        border: 1px solid #ccc;
    }

    td {
        text-align: right;
        padding-left: 50%;
        position: relative;
    }

    td::before {
        content: attr(data-label);
        position: absolute;
        left: 10px;
        width: 45%;
        text-align: left;
        font-weight: bold;
        color: #ffff00;
    }
}

@media screen and (max-width: 768px) {
    .obs-col {
        display: none;
    }
}
