.hidden {
    display: none !important;
}

body {
    overflow-y: auto;
}

a {
    color: #ff9c6b;
    text-decoration: none;
}

h4 {
    margin: 16px 0 10px 0;
}

a:visited {
    color: #ff9c6b;
    text-decoration: none;
}

a:hover {
    color: #ffb691;
    text-decoration: none;
}

.main-container {
    overflow-y: auto;
}


.position-button {
    margin-right: 20px; 
    margin-bottom: 10px; 
    background-color: #00406bee; 
    -webkit-backdrop-filter: blur(4px); 
    backdrop-filter: blur(4px); 
    padding: 10px 16px; 
    border: 1px solid #00406bee; 
    color: #EEE; 
    cursor: pointer; 
    text-align: center;
    transition: 100ms all ease-in;
}

.position-button.active {
    background-color: rgba(0, 0, 0, 0.88);
    border: 1px solid rgb(0, 0, 0, 0.88); 
    -webkit-backdrop-filter: blur(2px); 
    backdrop-filter: blur(2px); 
}

.position-button.hover {
    background-color: #005085ee; 
}

.position-button.inactive {
    opacity: 0.7;
    transition: 100ms all ease-in;
}

.position-button.inactive:hover {
    opacity: 0.9;
}

.disabled {
    pointer-events: none;
    opacity: 0.2;
}

.scrollbar-style::-webkit-scrollbar-track {
    border-radius: 10px;
    background: rgba(0,0,0,0.1);
    border: 1px solid #ccc;
}

.scrollbar-style::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: linear-gradient(left, #fff, #e4e4e4);
    border: 1px solid #aaa;
}

.scrollbar-style::-webkit-scrollbar-thumb:hover {
    background: #fff;
}

.scrollbar-style::-webkit-scrollbar-thumb:active {
    background: linear-gradient(left, #22ADD4, #1E98BA);
}