/* Add custom CSS styles below */ 
.option-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:10px;
}

.option-button{
    padding:10px 18px;
    border:1px solid #ddd;
    border-radius:8px;
    background:#fff;
    cursor:pointer;
    transition:.25s;
    font-size:14px;
}

.option-button:hover{
    border-color:#0ea5e9;
}

.option-button.active{
    background:#0ea5e9;
    color:#fff;
    border-color:#0ea5e9;
}

.option-button.disabled{
    opacity:.5;
    cursor:not-allowed;
    text-decoration:line-through;
}