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

.topDiv {
    width: 71vw; 

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4vw;
    
    padding-right: 1vw;
    padding-left: 1vw;
    
    padding-top: 1vw;
    padding-bottom: 1vw;
    
    margin-top: 1vw;
    
    margin-left: auto;
    margin-right: auto;
    
    border: 0.25vw solid black;
    background-color: greenyellow;
}

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

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

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

/*
.HKKButton:active {
    background-color: yellow;

}

.HKKButton.disabled {
    background-color: gray; 
    pointer-events: none; /
}
*/