.table-container {
    margin: 0;
    font-family: sans-serif;
    font-size: 1.0rem;
    line-height: 1.4em;
    color: #333;
    box-sizing: border-box;
    max-width: 100%;
    overflow-x: scroll;
}

::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 7px;
    height: 26px;
}
::-webkit-scrollbar-track {
    background: lightgray;
}
::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background-color: rgba(0, 0, 0, .5);
    -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, .5);
}
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.table-cebra {
    border-top: solid 1px #ccc;
    border-spacing: 0;
    border: 3px solid black;
}
.table-cebra thead th {
    background: #005288;
    color: white;
}
.table-cebra th,
.table-cebra td {
    border-right: 1px solid #ccc; 
    min-width: 170px;
    width: 170px;
    padding: 0.5rem;
    text-align: right;
    font-weight: normal;
}

.table-cebra td {
    border-top: 1px solid #ccc; 
}

.table-cebra tbody tr {
    background: white;
}

.table-cebra tbody tr:nth-child(2n) {
    background: #f2f2f2;
}

.table-cebra .sticky {
    position: sticky;
    left: 0;
}

.table-cebra tbody tr .sticky {
    background: #eceff6;
    color: black;
    text-align: left;
}

.table-cebra tbody tr:nth-child(2n) .sticky {
    background: lightgray;
    color: black;
    text-align: left;
}

.table-cebra thead tr .sticky {
    text-align: center;
}

.table-cebra thead tr .time {
    text-align: center;
}

.table-cebra .sticky-total {
    position: sticky;
    left: 0;
}

.table-cebra tbody tr .sticky-total {
    background: #333;
    color: white;
    text-align: center;
}

.table-cebra tbody tr .total-col {
    background: #333;
    color: white;
}

.table-cebra tr:hover {
    background-color: lightyellow;
}

.table-cebra tr:hover:nth-child(2n) {
    background-color: lightyellow;
}



.table-cell-link {
    text-decoration: none;
    color: black;
    display: block;
    width: 100%;
    height: 100%;
}

.table-cell2-link:hover {
    background-color: #4CAF50;
    color: white;
}




.my-button {
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-family: sans-serif;
    font-size: 1.2rem;
}
.my-button:hover {
    background-color: #45a049;
}
.my-button:active {
    background-color: #3e8e41;
}

.my-button2 {
    padding: 5px 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-family: sans-serif;
    font-size: 0.8rem;
}
.my-button2:hover {
    background-color: #45a049;
}
.my-button2:active {
    background-color: #3e8e41;
}


.form-list {
    font-family: sans-serif;
    height: 20px;
}

.form-refresh {
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-family: sans-serif;
    font-size: 1.2rem;
}


  



.dim-button {
    padding: 10px 20px;
    background-color: white;
    color:  #005288;
    border: 3px solid #005288;
    border-radius: 15px;
    cursor: pointer;
    text-decoration: none;
    font-family: sans-serif;
    font-size: 1.3rem;
    font-weight: bold;
    height: 70px;
    padding-top: 10px;
    display: inline-block;
    width: 100%;
}
.dim-button:hover {
    background-color: gray;
    color: white;
}
.dim-button:active {
    background-color: #3e8e41;
}



.dim-button2 {
    padding: 10px 10px;
    background-color: white;
    color:  #005288;
    border: 2px solid #005288;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-family: sans-serif;
    font-size: 1.2rem;
    font-weight: bold;
    height: 50px;
    padding-top: 10px;
    display: inline-block;
    width: 100%;
}
.dim-button2:hover {
    background-color: gray;
    color: white;
}
.dim-button2:active {
    background-color: #3e8e41;
}





.table-info {
    border: 3px solid black;
    max-width: 1200px;
}

.table-info .caption {
    background-color: #005288;
    color: white;
    min-width: 220px;
    padding: 15px;
    border-bottom: 1px solid gray;
}

.table-info .data {
    background-color: white;
    color: black;
    min-width: 400px;
    padding: 15px;
    border-bottom: 1px solid gray;
}


