.custom-powerball-form {
    font-family: Arial, sans-serif;
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.selected-numbers {
    font-size: 24px;
    color: #000;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

.number-selection {
    margin: 20px 0;
}

.number-selection div.buttons-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
}

.number-selection button {
    margin: 4px;
    padding: 10px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid #000;
    background-color: #fff;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}

.number-selection button.selected-yellow {
    background-color: #FFD700; /* Yellow */
    color: black;
}

.number-selection button.selected-blue {
    background-color: #0000FF; /* Blue */
    color: white;
}

#buyButton {
    display: block;
    width: 100%;
    padding: 10px;
    margin-top: 20px;
    background-color: #008CBA;
    color: white;
    border: none;
    cursor: pointer;
}
