/* --------------------------Betting Section --------------------------*/



.mouse-location-container {
    position: absolute;
    height: 160px;
    width: 280px;
    padding: 20px;
    background-color: rgb(0,0,0,0.7);
    display: grid;
    grid-template-columns: 75px 75px 75px 75px;
    grid-template-rows: 60px 60px 60px;
}

#staged-bet-container {
    bottom: 125px;
    left: 60px;
    width: 300px;
    height: 80px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    font-size: 30px;
    color: rgb(233, 229, 13);
    font-weight: 600;
    z-index: 10;
}

#staged-bet-chips {
    display: flex;
    align-items: flex-end;
    position: absolute;
    transition: 0.05s linear;
    z-index: 1000;
}

#staged-bet { 
    font-size: 30px;
    color: rgb(233, 229, 13);
    text-shadow: 2px 2px 0 black;
    font-weight: 600;
    height: 30px;
    width: 40px;
    align-self: center;
    text-align: center;
    margin-right: 35px;
}

.table-chip-img {
    position: absolute;
    height: 60px;
    width: 60px;
}

.side-chip-img {
    position: absolute;
    height: 40px;
}

#pull-back-button, #clear-bet {
    background-color: rgb(0, 0, 0);
    border: 3px solid rgb(124, 124, 124);
    border-radius: 5px;
    color: white;
    font-size: 18px;
    width: 75px;
    height: 40px;
    grid-row-start: 1;
    grid-row-end: 3;
    padding: 7px 0;
    margin-left: 15px;
    transition: transform 0.1s ease;
}
#pull-back-button:hover, #clear-bet:hover {
    transform: scale(1.1);
}

#pull-back-button:active, #clear-bet:active {
    transform: scale(1.05);
}

/* ^^^^^^^^^^^^^^^^^^^^^^^^^ END BETTING SECTION ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^*/

#bottom-container {
    transform: scale(0.8);
    transform-origin: bottom left;
    font-family: sans-serif;
    font-size: 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    position: fixed;
    bottom: 10px;
    left: 0;
}

.bet-container {
    display: flex;
    flex-direction: row;
    text-align: center;
    margin-top: -5px;
}

#bet-control-buttons {
    width: 500px;
    height: 109px;
    display: grid;
    grid-template-columns: repeat(6, 70px) 80px;
}

.bankroll-container {
    display: flex;
    flex-direction: column;
    width: 500px;
    height: 150px;
    margin-left: 20px;
}

.bankroll-label-on-table {
    position: absolute;
    width: 100%;
    color:rgb(78, 149, 255);
    font-size: 35px;
    font-weight: 900;
    text-shadow: 2px 2px 0px black;
    margin: 20px 0 0 20px;
}

#bankroll-chips {
    /* container that holds the chip imgs in bankroll area*/
    height: 100%;
    width: 550px;
    display: flex;
    align-items: flex-end;
    z-index: 20;
}

#bankroll-collection-target {
    position: absolute;
    top: 150px;
    left: 30px;
}

#round-up {
    position: absolute;
    display: flex;
    align-items: flex-end;
    top: 100px;
    left: 100px;
}

.chip-stack {
    height: 100px;
    width: 68px;
    display: flex;
    align-items: flex-end;
}

.bankroll-chip-img {
    position: absolute;
    height: 30px;
}

.control-column {
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

#high-roller {
    height: 110px;
    margin-top: 1px;
}

.control-label {
    background-color: white;
    border: 5px outset rgb(65, 65, 65);
    color: black;
    font-weight: 900;
    font-size: 25px;
    height: 45px;
    width: 60px;
    line-height: 40px;
    text-align: middle;
    text-align: center;
    z-index: 5;
}

#decrement1, #decrement5, #decrement25, #decrement100,
#decrement500, #increment500,
#increment1, #increment5, #increment25, #increment100,
#decrement5000, #increment5000 {
    background-image: radial-gradient(80px 150px, black 18%, white);
    color: white;
    border: none;
    border-radius: 5px 5px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 50px;
    font-size: 20px;
    transition: transform 0.1s ease;
}

#decrement1, #decrement5, #decrement25, #decrement100,
#decrement500, #increment500 {
    border-radius: 0 0 5px 5px;
}

.arrow {
    position: relative;
    height: 30px;
    width: 30px;
    z-index: 1;
}

#decrement1:hover, #decrement5:hover, #decrement25:hover,
#decrement100:hover, #increment1:hover, #increment5:hover,
#increment25:hover, #increment100:hover,
#decrement500:hover, #increment500:hover,
#decrement5000:hover, #increment5000:hover {
    transform: scale(1.1);
}

#decrement1:active, #decrement5:active, #decrement25:active,
#decrement100:active, #increment1:active, #increment5:active,
#increment25:active, #increment100:active,
#increment500:active, #decrement500:active,
#increment5000:active, #decrement5000:active {
    transform: scale(1.2);
}

.hidden { display: none; }
.show { display: block; }

#double-arrow {
    height: 15px;
    width: 20px;
}

#double-arrow.open {
    transform: rotate(180deg);
}

#show-money-button {
    position: fixed;
    bottom: 0;
    right: 0;
    background-color: rgb(20,90,30);
    border: 2px outset rgb(12, 58, 19);
    border-radius: 5px;
    height: 35px;
    width: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 11;
}
#show-money-button:active {
    transform: scale(0.85);
}

#money-container {
    background-color: rgba(0, 0, 0, 0.87);
    border-radius: 10px;
    position: fixed;
    align-self: flex-start;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 110px;
    width: 270px;
    color: white;
    font-size: 20px;
    z-index: 10;
    transition: transform 0.3s ease;

}


#money-container.open {
    transform: translateY(150px);
}

.no-scroll {
  position: fixed;
  width: 100%;
  overflow-y: scroll; /* Keeps scrollbar width to prevent layout shift */
}