﻿.mytable {
    font-family: 'Arial, Helvetica, sans-serif';
    font-size: 20px;
    border-collapse: collapse;
    width: 100%;
    min-width: 600px; /* Prevent table from shrinking too small */
    border-spacing: 0;
    font-weight: bold;
}

.mytable th,
.mytable td {
    border: double #000000;
    padding: 15px;
    text-align: left;
    max-width: 300px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mytable th {
    position: sticky;
    top: 0px;
    z-index: 1;
    background-color: white; /* Optional: improves visibility when sticky */
}

.mytable tr {
    border: double #000000;
}

.table-wrapper {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    margin-top: 60px;
    -webkit-overflow-scrolling: touch;
}

/* Optional: Adjustments for smaller screens */
@media (max-width: 768px) {
    .mytable {
        font-size: 16px;
    }

    .mytable th,
    .mytable td {
        padding: 10px;
    }
}
