/* Estilos para a página de seleção de boxes */

.boxes-container {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 20px 0;
}

.box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
}

.box-vendido {
    background-color: red;
    cursor: not-allowed;
}

.box-disponivel {
    background-color: blue;
}

.box-selecionado {
    background-color: green;
}

#confirm-box {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    background-color: #555;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#confirm-box:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

#confirm-box:not(:disabled):hover {
    background-color: #333;
}
