.es-table-wrapper {
    overflow-y: auto;
}

th,
td {
    /* width: 6vw; */
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.es-icon-container {
    width: 40px; /* Set the width to 50px */
    height: 40px; /* Set the height to maintain a square shape */
    border-radius: 50%; /* Make it round */
    margin-left: 10px;
    overflow: hidden;
    background-color: lightgray;
}

.es-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.es-letter {
    color: white;
    font-size: 20px;
    font-weight: bold;
}

.es-table-minimal td {
    white-space: nowrap; /* Prevent text wrapping */
}

/* Set width for specific columns (adjust as needed) */
.es-table-minimal .min-width-column {
    width: 1%;
}

/* Set width for the last column */
.es-table-minimal .last-column {
    width: 100%;
}

#schedule-div{
    width: 100%;
    overflow-x: scroll;
    padding: 0;
    margin: 0;
    
    overflow-y: visible;
}

#schedule-table td {
    height: 3em;
    min-width: 6em;
    text-align: center;
}

#schedule-table .headcol {
    position: static;
    width: 8em;
    left: calc(var(--bs-gutter-x)* .5);
    top: auto;
    margin-left: auto;
    border-top-width: 1px;
    /*only relevant for first row*/
    margin-top: -1px;
    /*compensate for top border*/
  }