.button-group {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    list-style: none;
    padding: 15px 0px;
    padding-bottom: 0px;
    margin: 0;
}

@media (max-width: 768px) {
    .button-group {
        flex-direction: column;
    }
}

.button-group li {
    flex: 1;
}

.button {
    display: block;
    padding: 10px 20px;
    border: 2px solid #14afe6;
    border-radius: 25px;
    text-align: center;
    cursor: pointer;
    background-color: #fff;
    color: #14afe6;
    font-size: 16px;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.button-group li:has(input[type="radio"]:checked) .button {
    background-color: #14afe6;
    color: #fff;
}

.button:hover {
    background-color: #14afe6;
    color: #fff;
}

.button-group input[type="radio"] {
    display: none;
}

.custom-text-danger {
    padding-bottom: 16px;
}
