.btn-container-vertical {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 1rem;
    height: 100%;
    margin-top: 1rem;
}

.btn-container-horizontal {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    row-gap: 1rem;
    height: 100%;
    column-gap: 1rem;
    margin-top: 1rem;
}

.btn {
    background-color: gold;
    color: #333333, inherit;
    border: 0;
    width: 10rem;
    height: 3rem;
    font-size: 1.25rem;
    text-decoration: none; /* Remove underline */
    cursor: default; /* Prevent the pointer cursor */
    transition: all 0.3s ease; /* Add transition effect for smooth hover */
    border: 10px #333333;
    border-radius: 10px; /* Add border radius for rounded corners */

}

.btn:hover {
    background-color: #f0f0f0; /* Change background color on hover */
    border-color: #cccccc; /* Change border color on hover */
}

.btn-yes {
    background-color: green;
    width: 5rem;
    height: 2rem;
    color: white;
    border: none;
    text-decoration: none;
    /* Remove underline */
    cursor: default;
    /* Prevent the pointer cursor */
}

a:hover {
    color: inherit;
    /* Use the same color as the surrounding text */
    text-decoration: none;
    /* Remove underline on hover */
}

.btn-scope {
    background-color: yellow;
    width: 5rem;
    height: 2rem;
    color: black;
    border: none;
}

button:active {
    opacity: 80%;
}

.add-bottom {
    padding-bottom: 2rem;
}

.btn11 {
    background-color: yellow;
    width: 5rem;
    height: 2rem;
    color: black;
    border: none;
}