
div.tradeMoneyTakeHolder {
    position: absolute;
    width: 250px;
    background-color: #222;
    height: 600px;
    border: 2px solid #00e7ba;
    left: 570px;
    bottom: 10px;
}

div.tradeGiveListHolder {
    position: absolute;
    width: 1700px;
    height: 150px;
    left: 15px;
    top: 20px;
    border: 2px solid white;
    background-color: #222;
}

button.tradeAddHandel {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 250px;
    height: 100px;
    margin-top: -50px;
    margin-left: -125px;
    background-color: #0ebf62;
    font-size: 40px;
    border: 4px solid cornflowerblue;
}

p.tradeOfferMoneyDisplay {
    position: absolute;
    width: 100%;
    text-align: center;
    font-size: 36px;
    margin-left: 20px;
    top: 60%;
}

button.tradeAddHandel:hover {
    background-color: #0a8342;
}

p.tradeOfferPlayername {
    position: absolute;
    width: 100%;
    text-align: left;
    font-size: 36px;
    margin-left: 20px;
    top: 125px;
}

p.tradeAcceptorPlayername {
    position: absolute;
    width: 100%;
    text-align: left;
    font-size: 36px;
    margin-left: 20px;
    bottom: 190px;
}

/*
#######################################################################################################
##                                                                                                   ##
##                                    TRADE - GIVE                                                   ##
##                                                                                                   ##
#######################################################################################################
*/

div.tradeGiveListHolder {
    position: absolute;
    width: 1700px;
    height: 150px;
    left: 15px;
    top: 20px;
    border: 2px solid white;
    background-color: #222;
}

div.tradeGiveAddedHolder {
    position: absolute;
    width: 1700px;
    height: 150px;
    left: 15px;
    top: 185px;
    border: 2px solid white;
    background-color: #222;
}


/*
#######################################################################################################
##                                                                                                   ##
##                                    TRADE - GENEREL BUBBLE                                         ##
##                                                                                                   ##
#######################################################################################################
*/


div.bubbleMain {
    display: flex;
    float: left;
    flex-wrap: wrap;
    overflow-y: auto;
}

div.bubbleMain div {
    /*width: min-content;*/
    height: min-content;
    font-size: 32px;
    margin: 3px;
    padding: 5px;
    border-radius: 10px;
    border: 0px;
}


/*
#######################################################################################################
##                                                                                                   ##
##                                    TRADE - WANT                                                   ##
##                                                                                                   ##
#######################################################################################################
*/

div.tradeWantListHolder {
    position: absolute;
    width: 1700px;
    height: 150px;
    left: 15px;
    bottom: 20px;
    border: 2px solid white;
    background-color: #222;
}

div.tradeWantAddedHolder {
    position: absolute;
    width: 1700px;
    height: 150px;
    left: 15px;
    bottom: 185px;
    border: 2px solid white;
    background-color: #222;
}


/*
#######################################################################################################
##                                                                                                   ##
##                                    TRADE - MONEY                                                  ##
##                                                                                                   ##
#######################################################################################################
*/

div.tradeMoneyHolder {
    position: absolute;
    width: 560px;
    height: 220px;
    left: 15px;
    top: 385px;
    border: 2px solid white;
    background-color: #222;
    display: grid; 
    grid-auto-rows: 1fr; 
    grid-template-columns: 30% 30% 30%; 
    grid-template-rows: 30% 30% 30%; 
    gap: 5px 5px; 
    grid-template-areas: 
        ". . ."
        "amiddle amiddle amiddle"
        ". . ."; 
    justify-content: center; 
    align-content: center; 
    justify-items: stretch; 
}

div.amiddle {
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    grid-template-rows: 1fr; 
    gap: 0px 0px; 
    grid-template-areas: 
      ". ."; 
    grid-area: amiddle; 
}

div.tradeMoneyHolder div.addMoney {
    border: 5px solid #00e7ba;
    width: 150px;
    padding: 5px;
    font-size: 36px;
    border-radius: 20px;
    background-color: #60bb67;
    height: 40px;
    cursor: pointer;
}

div.tradeMoneyHolder div.resetMoney {
    border: 5px solid #3a60c7;
    padding: 5px;
    font-size: 36px;
    border-radius: 20px;
    background-color: #219cb5;
    height: 40px;
    cursor: pointer;
}

div.tradeMoneyHolder div.removeMoney {
    border: 5px solid #cd4a00;
    width: 150px;
    padding: 5px;
    font-size: 36px;
    border-radius: 20px;
    background-color: #cc2525;
    height: 40px;
    cursor: pointer;
}

div.displayTradeMoney {
    font-size: 40px;
    padding: 8px;
}