form {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px;
}

select {
    padding: 8px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    cursor: pointer;
}

button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 8px 15px;
    font-size: 1em;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

button.update {
    background-color: #28a745;
}

button.update:hover {
    background-color: #218838;
}

button:hover {
    background-color: #0056b3;
}

.has-prediction {
    background-color: #f0f9f0;
    border: 1px solid #28a745;
    border-radius: 4px;
}

.disabled-form {
    opacity: 0.5;
}

.prediction-text {
    margin-top: 5px;
    font-size: 0.95em;
}

.prediction-text.correct {
    color: #28a745;
    font-weight: bold;
    background-color: rgba(40, 167, 69, 0.1);
    padding: 2px 5px;
    border-radius: 3px;
}

.prediction-text.incorrect {
    color: #dc3545;
    font-weight: bold;
    background-color: rgba(220, 53, 69, 0.1);
    padding: 2px 5px;
    border-radius: 3px;
}

.prediction-text.tie {
    color: #666;
    font-style: italic;
}