@keyframes dropFromTop {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.main{
    display: flex; 
    flex-direction: row; 
    background-color: rgb(61, 54, 54); 
    padding: 10px ;
}

.column {
    display: flex;
    justify-content: space-between;
    padding: 5px;
}

.black-box {
    flex: 1;
    justify-content: center;
    display: flex;
    background-color: black;
    border-radius: 5px;
    padding: 10px;
    margin: 3px;
}

.yellow-text {
    color: sandybrown;
}

.white-text {
    color: white;
}

.chips-column {
    max-height: 300px;
    overflow-y: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.chip {
    width: 60px;
    height: 60px;
    margin: 3px;
    cursor:pointer;
}

.drop-chip {
    width: 60px;
    height: 60px;
    animation: dropFromTop 0.5s ease-in-out;
}

.meron-box {
    flex: 1; justify-content: center; display: flex; 
    border: 2px solid red;
    border-radius: 10px; 
    padding: 10px 10px; 
    box-shadow: 0 0 0.5px 0.1px red; 
    /* filter: brightness(150%); */
    height: 120px;
    margin: 2px;
}

.draw-box {
    flex: 1; justify-content: center; display: flex; 
    border: 2px solid  #1acf13;
    border-radius: 10px; 
    padding: 10px 10px; 
    box-shadow: 0 0 0.5px 0.1px #1acf13;
    /* filter: brightness(150%); */
    height: 120px;
    margin: 2px;
}

.wala-box{ 
    flex: 1; justify-content: center; display: flex; 
    border: 2px solid #1b55f9;
    border-radius: 10px; 
    padding: 10px 10px; 
    box-shadow: 0 0 0.5px 0.1px #1b55f9; 
    /* filter: brightness(150%); */
    height: 120px;
    margin: 2px;
}

.disable-box {
    flex: 1; justify-content: center; display: flex; 
    border: 2px solid #7e7e7e;
    border-radius: 10px; 
    padding: 10px 10px; 
    box-shadow: 0 0 0.5px 0.1px #7e7e7e; 
    /* filter: brightness(150%); */
    height: 120px;
    margin: 2px;
}

.bet-title{
    font-size: x-large; 
    font-weight: bolder;
}

.bet-amount{
    color: white;
}

.iframe {
    width: 100%; 
    min-height: 500px;
}

.submit-button{
    padding: 10px 20px;
    border: 2px solid white;
    color: white;
    font-weight: bold;
    border-radius: 10px;
    background: linear-gradient(to bottom, #4ca6ff, #006ae2);
    cursor: pointer;
}

.cancel-button{
    padding: 10px 20px;
    border: 2px solid white;
    color: white;
    font-weight: bold;
    border-radius: 10px;
    background: linear-gradient(to bottom, #e7b900, #ff6a00);
    cursor: pointer;
}

.chip-red{
    color: white;
    font-weight: bold;
    font-size: 20px;
    position: absolute;
    transform: translate(0%, 0%);
    background-color: red;
    border-radius: 5px;
    margin-top: 18px;
    animation: fadeIn 0.5s ease-in-out;
}

.chip-orange{
    color: white;
    font-weight: bold;
    font-size: 20px;
    position: absolute;
    /* top: 62%;
    left: 50%; */
    transform: translate(0%, 00%);
    background-color: #f77934;
    border-radius: 5px;
    margin-top: 18px;
    animation: fadeIn 0.5s ease-in-out;
}

.chip-yellow{
    color: white;
    font-weight: bold;
    font-size: 20px;
    position: absolute;
    /* top: 62%;
    left: 50%; */
    transform: translate(0%, 0%);
    background-color: #f4b215;
    border-radius: 5px;
    margin-top: 18px;
    animation: fadeIn 0.5s ease-in-out;
}

.chip-green{
    color: white;
    font-weight: bold;
    font-size: 20px;
    position: absolute;
    /* top: 62%;
    left: 50%; */
    transform: translate(0%, 0%);
    background-color: #006837;
    border-radius: 5px;
    margin-top: 18px;
    animation: fadeIn 0.5s ease-in-out;
}

.chip-blue{
    color: white;
    font-weight: bold;
    font-size: 20px;
    position: absolute;
    /* top: 62%;
    left: 50%; */
    transform: translate(0%, 0%);
    background-color: #0071bc;
    border-radius: 5px;
    margin-top: 18px;
    animation: fadeIn 0.5s ease-in-out;
}

.chip-purple{
    color: white;
    font-weight: bold;
    font-size: 20px;
    position: absolute;
    /* top: 62%;
    left: 50%; */
    transform: translate(0%, 0%);
    background-color: #662d91;
    border-radius: 5px;
    margin-top: 18px;
    animation: fadeIn 0.5s ease-in-out;
}

.chip-maroon{
    color: white;
    font-weight: bold;
    font-size: 20px;
    position: absolute;
    /* top: 62%;
    left: 50%; */
    transform: translate(0%, 0%);
    background-color: #630a27;
    border-radius: 5px;
    margin-top: 18px;
    animation: fadeIn 0.5s ease-in-out;
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.popup-cont {
    /* background-color: white; */
    border-radius: 10px;
    position: absolute;
}

.text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.popup-image{
    position: relative;
    width: 100%;
    height: auto;
}

.popupMessage1{
    font-size: 22px;
    color: #ff6a00;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    padding: 3px;
}

.popupMessage2{
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    border-radius: 5px;
    padding: 5px;
    text-transform: uppercase;
}

.close-popup {
    position: absolute;
    top: 0px;
    right: 10px;
    font-size: 25px;
    font-weight: bold;
    cursor: pointer;
    color: white;
}

@media screen and (max-width: 370px) {
    .bet-title{
        font-size: 15px; 
        font-weight: bolder;
    }
    .iframe {
        width: 100%; 
        min-height: 100px;
    }
}

@media screen and (max-width: 600px) {
    .iframe {
        width: 100%; 
        min-height: 200px;
    }
}

@media screen and (max-width: 800px) {
    .iframe {
        width: 100%; 
        min-height: 200px;
    }
}

@media screen and (max-width: 1000px) {
    .main{
        display: flex; 
        flex-direction: column; 
        background-color: rgb(61, 54, 54); 
        padding: 10px ;
    }
}