#main {
    height: 100%; 
    margin-top: 20px;
}

#showname {
    text-align: center;
}

#stockname {
    font-weight: bold;
    display:none;
}

.div-container {
    display: flex; 
    justify-content: space-between;
}

#container {
    border: 1px solid #000;
    border-radius: 5px;
    height: 700px; 
    width: 900px; 
    display:inline-block;
}

#control {
    height: 700px; 
    width: 600px; 
    display:inline-block; 
    border:1px solid #000;
    border-radius: 5px;
}

.button-pause {
    padding: 5px 5px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 2px;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.3s ease;
    height:35px; 
    width:80px;
    padding:10px; 
    margin-top:10px; 
    margin-left:10px;
}

.button-pause:hover {
    background-color: #5ea7f6;
    color: grey;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5);
    cursor:pointer;
}

.button-restart {
    padding: 5px 5px;
    background-color: #ff0000;
    color: white;
    border: none;
    border-radius: 2px;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.3s ease;
    height:35px; 
    width:80px;
    padding:10px; 
    margin-top:10px; 
    margin-left:10px;
}

.button-restart:hover {
    background-color: #f65e5e;
    color: grey;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5);
    cursor:pointer;
}

.button-showname {
    padding: 5px 5px;
    background-color: #ffff00;
    color: black;
    border: none;
    border-radius: 2px;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.3s ease;
    height:35px; 
    width:150px;
    padding:10px; 
    margin-top:10px; 
    margin-left:10px;
}

.button-showname:hover {
    background-color: #ecec6b;
    color: grey;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5);
    cursor:pointer;
}

.playcontrol {
    margin-left:10px;
}

.controlparams {
    margin-top: 5px;
    margin-left: 10px;
    font-weight: bold;
}

.params {
    margin-top: 2px;
    margin-left: 10px;
}

.params_oper {
    margin-top: 2px;
    margin-left: 50px;
}

.pdata {
    color:#007bff;
}

.button-buy {
    padding: 5px 10px;
    background-color: #ff0000;
    color: white;
    border: none;
    border-radius: 2px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.3s ease;
    height:30px; 
    width:60px;
    padding:5px; 
    margin-top:5px; 
    margin-left:10px;
}

.button-buy:hover {
    background-color: #880000;
    color: white;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5);
    cursor:pointer;
}

.button-sell {
    padding: 5px 10px;
    background-color: #00ae00;
    color: white;
    border: none;
    border-radius: 2px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.3s ease;
    height:30px; 
    width:60px;
    padding:5px; 
    margin-top:5px; 
    margin-left:20px;
}

.button-sell:hover {
    background-color: #00ff00;
    color: white;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5);
    cursor:pointer;
}

.status-container {
    margin-top:5px;
    margin-left:10px;
    font-size:small;
}

.params-container {
    font-size:small;
}

.status-container {
    display: none;
}

#status-title {
    display: none;
}

#divid_status {
    display: none;
}

.table-container {
    overflow-y:scroll;
    height:150px;
}

table {
    margin-left: 20px;
    width: 90%;
    border-collapse: collapse;
}

table, th, td {
    border: 1px solid #ddd;
}

th {
    background-color: #f2f2f2;
    color: #333;
    font-size: 12px;
    padding: 6px;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}

td {
    text-align: left;
    padding: 8px;
}

tr:hover {
    background-color: #eaeaea;
}

th, td {
    border-radius: 4px;
}

#table-content {
    font-size: 11px;
    padding: 5px;
}

.temp_descri {
    margin-top: 10px;
    margin-left: 10px;
    margin-right: 10px;
}
.temp_title {
    font-weight: bold;
}
.descri-title {
    font-weight: bold;
}

#mimic-trade {
    display:none;
}

#mimic-tradecontrol {
    display:none;
}

#divid-trade {
    display:none;
}

#divid-table {
    display:none;
}

#export-table {
    display:none;
}

#exportbtn {
    display:none;
    margin-top:5px;
    margin-left:20px;
}

#klines-control {
    display:none;
}

#klines-params {
    display:none;
}

#totalcap {
    color:#333;
}

#totalmv {
    color:#ff0000;
}

#totalprofit {
    color:#ff0000;
}

#totalprofperct {
    color:#ff0000;
}

#avaiablecap {
    color:green;
}

#holdvalues {
    color:#007bff;
}

#holdamount {
    color:#007bff;
}

#avgcost {
    color:#007bff;
}