@charset "UTF-8";
/* CSS Document */

.bottomDiv {
     /*width: auto;*/
    width: fit-content;
    max-width: 100%;
    box-sizing: border-box;
    
    margin-bottom: 1vw;
    margin-top: 1vw;
    
    margin-left: auto;
    margin-right: auto;
    
    border: 0.25vw solid black;
    
    padding-left: 1vw;
    padding-right: 1vw;
    
    padding-top: 1vw;
    
     
    
    /*background-color: papayawhip;*/

}

.buttonsContainer {
    
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    height: auto;
    max-width: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5vw;
    padding-right: 1vw;
    padding-left: 1vw;
    padding-top: 1vw;
    padding-bottom: 1vw;
    /*border: 0.25vw solid black;*/
    background-color: skyblue;
}

.AQEButton {
    width: 18vw;
    border-radius: 4em;
    padding: 0.8em 1.2em;
    text-decoration: none;
    font-family: rob;
    font-weight: bold;
    font-size: 3vw;
    color: #ffffff;
    background-color: darkblue;
    text-align: center;
    transition: all 0.1s;
    cursor: pointer;
}

/* Darker background color when clicked, but not when disabled */
.AQEButton:active:not(.disabled) {
    background-color: yellow;
}

/* Gray background for disabled state */
.AQEButton.disabled {
    background-color: lightgray;
    pointer-events: none; /* Prevents any mouse events on this element */
}
