#myNavbar {
    background-color: white !important;  /* Use !important to override default styles */
}
#myNavbar a {
    color: #aa8e5f;
}

header {
    text-align: center;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #f2f2f2;
}

.ok-button-small {
    display: inline-block;
    width: auto; 
    margin: 0 auto;
    padding: 10px;
    padding-left: 40px;
    padding-right: 40px;
    background-color: #aa8e5f;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 70px;
}

#subsButton{
    display: inline-block;
    width: 200px; 
    margin: 0 auto;
    padding: 15px;
    background-color: #aa8e5f;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 70px;
}

.ok-button-big {
    display: inline-block;
    width: 12%; 
    margin: 0 auto;
    padding: 15px;
    background-color: #aa8e5f;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 70px;
}

.btn-primary {
    background-color: #aa8e5f !important;
    border-color: #aa8e5f !important;
    height: 80px;
    width: 400px;
}


#idContainer {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Aligns content to the top */
    align-items: center; /* Centers content horizontally */
    height: 100vh; /* Takes the full height of the viewport */
    padding: 50px;
    padding-top: 10vh; /* Adjust this value to move content higher */
}
   

#spinner {
    width: 64px;
    height: 64px;
    border: 8px solid;
    border-color: #aa8e5f transparent #aa8e5f transparent;
    border-radius: 50%;
    animation: spin-anim 1.2s linear infinite;
    margin-top: 20px; /* Add space above the spinner */
    margin-left: auto;
    margin-right: auto;
}


@keyframes spin-anim {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.loader-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
}


.hidden {
    display: none;
}


.modal {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 1;
}

.modal-content {
    position: relative;
    margin: 15% auto;
    padding: 20px;
    width: 30%;
    background-color: #fff;
    text-align: center;
}

.close {
    position: absolute;
    right: 10px;
    top: 5px;
    cursor: pointer;
}


.button-container {
    text-align: center;
    margin-top: 20px;
}

.centered-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
