.button12-container {
    display: flex; /* Enables Flexbox */
    justify-content: center; /* Centers buttons horizontally */
    flex-wrap: wrap;
    gap: 10px; /* Or use margin on the buttons themselves */
}
.button-12 {
    width: 100px;
    align-items: center;
    background-color: #00CC00;
    border: none;
    border-radius: 10px;
    color: black;
    cursor: pointer;
    display: inline-flex;
    font-size: 10px;
    font-weight: bold;
    font-family: Verdana, Helvetica, sans-serif;
    justify-content: center;
    line-height: 20px;
    height: 40px;
    padding: 20px;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
    transition: 0.2s;
    vertical-align: center;
}
.button-12:hover,
.button-12:focus {
    background-color: #000000;
    font-size: 12px;
    color: #00CC00;
}
.button-12:active {
    background: #000b6;
    color: rgb(255, 255, 255, .7);
}

.button-12:disabled {
        cursor: not-allowed;
        background: rgba(0, 0, 0, .08);
        color: rgba(0, 0, 0, .3);
}
.button-13 {
    width: 100px;
    align-items: center;
    background-color: red;
    border: none;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    display: inline-flex;
    font-size: 10px;
    font-weight: bold;
    font-family: Verdana, Helvetica, sans-serif;
    line-height: 20px;
    justify-content: center;
    height: 40px;
    padding: 20px;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
    transition: 0.2s;
    user-select: none;
    vertical-align: center;
}
.button-13:hover,
.button-13:focus {
    background-color: white;
    font-size: 12px;
    color: red;
}
.button-13:active {
    background: #000b6;
    color: rgb(255, 255, 255, .7);
}

.button-13:disabled {
        cursor: not-allowed;
        background: rgba(0, 0, 0, .08);
        color: rgba(0, 0, 0, .3);
}