
.list-center {
    display: flex;
    justify-content: center;
}

.list-wrapper {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

/* Style the button that is used to open and close the collapsible content */
.collapsible {
    color: var(--sacGray);
    background-color: var(--sacBlue);
    border-left: none;
    border-right: none;
    border-top: none;
    border-bottom: 3px var(--sacGray) solid;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    outline: none;
    font-size: 24px;
    font-weight: 500;
}


@media (max-width: 1000px) {
    .list-wrapper{
        width: 90vw;
    }
}


.content {
    padding: 0 18px;
    /*background-color: white;*/
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    font-size: 18px;
}

.collapsible:after {
    content: '\02795'; /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    /*color: white;*/
    float: right;
    margin-left: 5px;
}

.active:after {
    content: "\2796"; /* Unicode character for "minus" sign (-) */
}

td {
    color: var(--sacGray);
}

th {
    color: var(--sacGray);
    font-weight: bold;
}