.container {
    display: flex;
    font-weight: 500;
}

.sectionA {
    width: 67.2%;
}

.tableContainer {
    margin-top: 0.4rem;
    width: 100%;
}

.table {
    width: 100%;
}

.heading {
    display: flex;
    padding: 0.6rem 0.5rem;
    justify-content: space-between;
    background-color: #2c3e50d9;
    color: #ffffff;
    font-weight: 550;
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    margin-top: 0.5rem;
}

.viewAll {
    cursor: pointer;
}

.Result {
    display: flex;
    justify-content: flex-end;
    padding: 0.4rem 0;
    margin-top: 0.5rem;
    gap: 5px;
}

.resultWin {
    background: #355e3b;
    /* Green */
    color: #ffff33;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
}

.resultLoss {
    background: #d32f2f;
    /* Red/Brown */
    color: #fff;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
}

.placeBet {
    width:  32.8%;
    padding-left: 0.1rem;
    position: static;
    z-index: auto;
}

.blueBar {
    display: none;
    justify-content: center;
    align-items: center;
    background-color: #0088CC;
    color: #ffffff;
    padding: 10px;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .blueBar {
        display: flex;
    }

    .sectionA {
        width: 100%;
    }

    .placeBet {
        display: none;
    }

    .placeBet.visible {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 10;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
}