/* body{
    display: flex;
    justify-content: center;
    padding-top: 50px;
    background-color: #797979;
} */
.table{
    box-sizing: border-box;
    padding-top: 50px;
    display: flex;
    justify-content: center;
    margin: 0;
    position: relative;
    min-height: 100vh;
    font-size: 16px;
    font-weight: 500;
    font-family: Poppins, sans-serif;
    background: radial-gradient(circle at 50% 0,rgba(233,34,183,.25),transparent),#000;
    background-attachment: fixed;
    font-family: Poppins,sans-serif;
    color: var(--light);
}
/* ==== table ==== */
.table_conteiner{
    min-width: 500px;
    border-width: 1px;
    border-style: solid;
    border-color: #292640;
    border-radius: 6px;

    padding: 10px;
    margin: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    font-size: small;
    box-shadow: 0 0 30px rgb(0 0 0 / 50%);
    max-width: min(100vw - 720px - 3rem,100%);

    max-width: 100%;
    color: #fff;
}
.table_title{
    font-weight: 700;
    margin-left: 5px;
    margin-bottom: 10px;
    font-size: large;
    display: flex;
    align-items: center;
}
.live_label{
    display: flex;
    align-items: center;
}
.dot{
    width: 0.5em;
    height: 0.5em;
    background-color: lime;
    border-radius: 50%;
    margin-right: 10px;
    animation: blinding .8s infinite alternate;
    box-shadow: 0 0 5px lime;
}
.table_content{
    width: 100%;
    overflow-y: scroll;
}
.table_content_inner{
    width: fit-content;
    margin: auto;
    padding: 0;
    height: calc(23px * 10);
}
.column_name{
    display: flex;
    min-width: -moz-fit-content;
    min-width: fit-content;
    width: auto;
    width: -moz-fit-content;
    width: fit-content;
    align-items: center;
    padding: 3px 10px;
}
.time{
    min-width: 120px;
    width: 120px;

    opacity: .5;
    text-align: left;
    padding: 0;
    white-space: nowrap;
    font-size: .9rem;
}
.address{
    width: 360px;
    min-width: 180px;

    opacity: .5;
    text-align: left;
    padding: 0;
    white-space: nowrap;
    font-size: .9rem;
}
.profit{
    min-width: 120px;

    opacity: .5;
    text-align: left;
    padding: 0;
    white-space: nowrap;
    font-size: .9rem;

    text-align: right;
}
.table_row{
    display: flex;
    min-width: -moz-fit-content;
    min-width: fit-content;
    width: auto;
    width: -moz-fit-content;
    width: fit-content;
    align-items: center;
    padding: 5px 10px;
}
.row_time{
    min-width: 120px;
    width: 120px;
    
    white-space: nowrap;
    color: var(--gray_lighter);
    font-family: var(--font_mono);
    display: flex;
    align-items: center;
}
.row_address{
    width: 360px;
    min-width: 180px;
}
.row_profit{
    min-width: 120px;

    display: flex;
    align-items: center;

    opacity: .5;

    justify-content: right;
    text-align: right;
}
.row_profit > span{
    display: flex;
    align-items: center;
}
.row_profit > span > svg{

    text-align: right;

    height: 1.2em;

    display: flex;
    align-items: center;
}

::-webkit-scrollbar {
    width: 10px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #aa3d07;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #f95200;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #f6ae2d;
  }