html, body {
    font-family: Verdana;
    font-size:0.9rem;
}

.btn.forbtn {
    background-color: #6495ed;
    font-weight:bold;
    color: white;    
}

.tab-button {
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
/*    z-index: 1050;*/
    white-space: nowrap;
}

.forinpt {
    font-size: 0.9rem;
}

.table-scroll {
    overflow-x: auto;
    overflow-y: auto;
    max-width: 100%;
    height: 30vh;
    border: 1px solid #dee2e6;
}

.table thead.sticky-header th {
    position: sticky;
    top: 0;
    background-color: #6495ed;
    z-index: 10;
    color: white;
}

.table.wide-table {
    width: 200%;
    border-collapse: collapse;
    table-layout: auto;
}

.table tfoot.sticky-footer {
    position: sticky;
    bottom: 0;
    z-index: 1;
}

.table tfoot.sticky-footer td {
    background-color: #ebebeb;
}

td {
    text-align: left;
}

.active {
    background: #6495ed !important;
    color: white !important;
}

@media (max-width: 768px) {
    .table.wide-table {
        width: 800%;
    }

    .tab-button {
        position: static !important;
        left: auto !important;
        bottom: auto !important;
        transform: none !important;
        display: flex;
        justify-content: center;
        gap: 8px;
        flex-direction: column !important;
        align-items: stretch;
    }

    .button-container {
        flex-direction: column !important;
        align-items: stretch;
    }
}