.aux-event-container {
    /* width: 100%;
    overflow-x: auto; */
    display: flex;
    gap: 5rem;
}

.aux-event-container input:not([type="submit"]), 
.aux-event-container textarea {
    padding: .5rem;
    width: 100%;
    box-sizing: border-box;
}

.aux-event-container textarea {
    height: 10rem;
}

.create-event-but {
    width: fit-content;
}

.scoreboard-fixed-columns {
    table-layout: fixed;
}

.aux-event-container table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    border-left: none;
    border-right: none;
    border: none;
}

.aux-event-container th,
.aux-event-container td {
    padding: 1em;
    text-align: center;
    border-left: none;
    border-right: none;
}

.aux-event-container thead {
    /* background-color: #f2edff; */
    background-color: #f0edff;
    position: sticky;
    top: 0;
    z-index: 1;
}

.aux-event-container tr:nth-child(even) {
    background-color: #f7f6fd;
}

/* for tablet (landscape) */
@media screen and (width <=1400px) {
    .aux-event-container {
        display: block;
    }
}

/* for tablet (portrait) */
@media screen and (max-width: 850px) {
    .aux-event-container input:not([type="submit"]),
    .aux-event-container textarea ,
    .create-event-but{
        width: 100%
    }
}

/* for mobile */
@media screen and (width <=600px) {
    .aux-event-container {
        table-layout: auto;
    }

    .aux-event-container th,
    .aux-event-container td {
        padding: 1em .5rem;
    }
}
