body {
    font-family: sans-serif;
    background-color: #f0f2f5;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    width: 90%;
    max-width: 400px;
    text-align: center;
}

h1 {
    color: #333;
    margin-bottom: 1.5rem;
}

.teams {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 1rem;
}

.teams input, .teams span {
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    width: 120px;
    border: 1px solid #ccc;
    padding: 0.5rem;
    border-radius: 4px;
}

.teams span {
    border: none;
    width: auto;
}

.bet-inputs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.bet-inputs input {
    width: 80px;
    font-size: 1.5rem;
    text-align: center;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
    width: 100%;
}

button:hover {
    background-color: #0056b3;
}

#result-display {
    margin-top: 2rem;
    text-align: left;
    padding: 1rem;
    border: 1px solid #eee;
    border-radius: 4px;
    background-color: #f9f9f9;
}

#result-display h2 {
    font-size: 1.1rem;
    color: #555;
    margin-top: 0;
}

#result-display p {
    font-size: 1.2rem;
    color: #000;
    margin: 0.5rem 0 1rem 0;
}

#points-text {
    font-weight: bold;
    color: #007bff;
}

.nav-link {
    display: block;
    margin-top: 1.5rem;
    color: #007bff;
    text-decoration: none;
}

.nav-link:hover {
    text-decoration: underline;
}

.hidden {
    display: none;
}

.clear-button {
    background-color: #dc3545; /* Red color for danger/clear action */
    margin-top: 1rem;
    width: 100%;
}

.clear-button:hover {
    background-color: #c82333;
}