body {
    background-color: black;
}

p {
    margin: 0px !important;
}

li a {
    color: var(--mustard);
}

.loading-overlay {
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.big-spinner {
    width: 65px;
    height: 65px;
}

.tabLink {
    display: inline-block;
    padding: 15px 10px 15px 10px;
    border: 1px solid white;
    cursor: pointer;
    width: 175px;
    text-align: center;
    text-decoration: none;
    color: white;
}

.tabLinkActive {
    background-color: white;
    color: black;
}

.tabLinkLeft {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.tabLinkRight {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.offcanvas-link {
    font-size: 24px;
    color: white;
    text-decoration: none;
    transition: 0.2s;
}

.offcanvas-link:hover {
    color: rgb(130, 130, 130);
}

.offcanvas-link-medium {
    font-size: 16px !important;
    color: white;
    text-decoration: none;
    transition: 0.2s;
}

.offcanvas-link-medium:hover {
    color: rgb(130, 130, 130);
}

ol.custom-ol {
    padding-left: 0px;
    counter-reset: list-counter;
}
ol.custom-ol li {
    list-style: none;
    margin-bottom: 10px;
    position: relative;
    counter-increment: list-counter;
    padding-left: 40px; /* Adjust based on button size */
}
ol.custom-ol li::before {
    content: counter(list-counter) ". ";
    position: absolute;
    left: 62px; /* Adjust based on button size */
}
ol.custom-ol li .info-button {
    position: absolute;
    left: 0;
    top: 25%;
    margin-right: 10px;
}

.alert-box {
    -webkit-box-shadow: 0px 0px 93px 61px rgba(0,0,0,0.64);
    -moz-box-shadow: 0px 0px 93px 61px rgba(0,0,0,0.64);
    box-shadow: 0px 0px 93px 61px rgba(0,0,0,0.64);
}

.nav-link {
    color: white;
}

.nav-link:hover {
    color: white;
}

.amac-menu-button {
    background: none;
    background-color: none !important;
    color: white;
    border: none;
    text-align: center;
    text-decoration: none;
    font-size: 36px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 5px;
}