body {
    background-color: #121212;
    color: #ffffff;
}

header {
    background-color: #1f1f1f;
}

.form-select, .form-control {
    background-color: #2c2c2c;
    color: #ffffff;
    border-color: #444444;
}

.game-card {
    background-color: #1f1f1f;
    border: 1px solid #444444;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.game-info {
    text-align: center;
    margin-bottom: 10px;
}

.team-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.team {
    cursor: pointer;
    text-align: center;
    width: 45%;
    padding: 10px;
    border-radius: 5px;
    transition: all 0.3s;
}

.team.selected {
    border: 2px solid red;
    box-shadow: 0 0 10px red;
}

.team.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    position: relative;
}

.team.disabled::after {
    content: "Selected";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.7);
    padding: 5px;
    border-radius: 3px;
}

.team img {
    width: 50px;
    height: 50px;
}

.confidence-container {
    margin-top: 10px;
    text-align: center;
}

.confidence-input {
    width: 60px;
    text-align: center;
    background-color: #2c2c2c;
    color: #ffffff;
    border: 1px solid #444444;
}

.confidence-btn {
    background-color: #3c3c3c;
    color: #ffffff;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}

.confidence-btn:hover {
    background-color: #505050;
}

.vs {
    font-size: 1.2em;
    font-weight: bold;
}

.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.consensus-btn {
    margin: 5px;
}