body {
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    font-size: 16px;
}

.container {
    background-color: ivory;
    margin: auto;
    width: 80%;
    padding: 20px;
    box-shadow: 0px 0px 12px #556B2F;
    border-radius: 15px;
}

/* Sticky Top Scrollbar */

.scroll-inner {
    width: max-content;
    min-width: 1200px; /* forces horizontal scroll */
}



.table-scroll {
    overflow-x: auto;
    overflow-y: auto;
    height: 500px; /* or however much you want visible */
    width: 100%;
    border: 2px solid #8B0000;
}

.styled-table {
    width: max-content; /* allows table to grow as needed */
    border-collapse: collapse;
    background-color: #FFF8DC;
    table-layout: auto;
}

.styled-table th,
.styled-table td {
    border: 3px solid #8B0000;
    padding: 12px;
    font-size: 16px;
    white-space: nowrap;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

.styled-table tr:nth-child(even) {
    background-color: #FFF0C1;
}

.top-scrollbar {
    overflow-x: auto;
    overflow-y: hidden;
    height: 16px;
    margin-bottom: 5px;
    background: #eee;
}

.scroll-content {
    height: 1px;
}

.styled-table img {
    display: none;
}