﻿.containerDetail {
    width: 70%;
    background: white;
    padding: 20px 0 0 0;
}

.title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.chart-placeholder {
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    margin: 20px;
}

.party-options {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.party {
    display: flex;
    align-items: center;
    gap: 10px;
}

.party-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #007bff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 8px;
}

.party-name {
    font-size: 18px;
    font-weight: bold;
}

.party-chance {
    font-size: 18px;
    font-weight: bold;
}

.bet-options {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.bet-button {
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
    width: 48%;
    text-transform: uppercase;
}

.blue {
    background-color: #007bff;
    color: white;
}
.red {
    background-color: #dc3545;
    color: white;
}
.containerDetail > div {
    display:flex;
}