* {
    font-family: 'Roboto', sans-serif;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-size: 14px;
}

.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    height: 100vh;
    background: linear-gradient(69deg, #2f4f4f, #4682B4);
}
.loader {
    display: inline-flex;
    gap: 5px;
    animation: l3-0 1s infinite;
    transform-origin: 50% calc(100% + 2.5px);
}
.loader:before,
.loader:after {
    content: "";
    width: 25px;
    aspect-ratio: 1;
    box-shadow: 0 0 0 3px inset #fff;
}
.loader:after {
    transform-origin: -2.5px calc(100% + 2.5px);
    animation: l3-1 1s infinite;
}
@keyframes l3-1 {
    50%,
    100% {transform:rotate(180deg)}
}
@keyframes l3-0 {
    0%,
    50%  {transform:rotate(0deg)}
    100% {transform:rotate(90deg)}
}
.loader-container.active {
    display: flex;
}

BODY{
    background: linear-gradient(69deg, #2f4f4f, #4682B4);
    color: #2F4F4F;
}

.container {
    width: 100%;
    max-width: 1280px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
}

header {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.header_info {
    width: 100%;
    background: #F8F8FF;
    padding: 10px;
    display: flex;
}

nav a {
    font-size: 16px;
    padding: 10px 20px;
    margin-left: 10px;
    border: none;
    border-radius: 5px;
    color: #F8F8FF;
    background: linear-gradient(45deg, #2f4f4f, #4682B4);
    cursor: pointer;
    text-decoration: none;
}
nav a:first-child {
    margin-left: 0;
}

nav {
    display: flex;
    justify-content: flex-start;
    width: 50%;
}

@media(max-width: 768px) {
    nav {
        width: 100%;
    }
}

.header_info_right {
    display: flex;
    justify-content: flex-end;
    padding: 8px 0;
    width: 50%;
}

@media(max-width: 530px) {
    .header_info_right {
        width: 100%;
        justify-content: flex-start;
    }
}

.header_body {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

span.name_trader {
    font-size: 20px;
}

@media(max-width: 530px) {
    span.name_trader {
        font-size: 16px;
    }
    .header_body {
        flex-direction: column-reverse;
    }
}

.button-panel {
    display: flex;
    padding: 20px 0;
}

.button-panel button{
    font-size: 16px;
    padding: 10px 20px;
    margin-left: 10px;
    border: none;
    border-radius: 5px;
    color: #F8F8FF;
    background: linear-gradient(45deg, #2f4f4f, #4682B4);
    cursor: pointer;
}

.sms_button {
    font-size: 13px;
    border: none;
    border-radius: 5px;
    color: #F8F8FF;
    background: linear-gradient(45deg, #2f4f4f, #4682B4);
    cursor: pointer;
    padding: 12px 12px;
}

.button-panel button:hover {
    background: linear-gradient(45deg, #4682B4, #2f4f4f);
}

.sms_table_block{
    background: #F8F8FF;
    padding: 10px;
    margin-top: 15px;
    border: solid 2px #C6C6CC;
    border-radius: 10px;
    box-shadow: 0 2px 2px 0 #4682b4,
                0 -2px 2px 0 #2f4f4f;
    width: 100%;
    overflow-x: scroll;
}

.sms_table {
    width: 100%;
    border-collapse: collapse;
}


colgroup col:first-child,
colgroup col:nth-child(2){
    width: 150px;
}

colgroup col:nth-child(4){
    width: 200px;
}

.sms_table tr:nth-child(even) {
    background-color: #F0F0F5;
}

th, td{
    border: 1px solid #C6C6CC;
    padding: 10px 5px;
    max-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.popup_screen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    width: 100%;
    height: 100%;
    z-index: 100;
    opacity: 0.6;
    display: none;
}

.popup_link_sms{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 101;
    background: #F8F8FF;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 2px 2px 0px #4682b4, 0px -2px 2px 0px #2f4f4f;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    display: none;
}

.popup_link_sms select{
    width: 50%;
    margin: 0px 10px;
    padding: 5px;
}

.popup_link_sms button {
    margin: 10px 0px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    color: #F8F8FF;
    background: linear-gradient(45deg, #2f4f4f, #4682B4);
    cursor: pointer;
    padding: 12px 12px;
}

.smm_filter_body {
    margin-top: 15px;
    width: 100%;
    display: flex;
    background: #fff;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 2px 0 #4682b4, 0 -2px 2px 0 #2f4f4f;
}

.sms_select_type {
    padding: 10px;
    min-width: 150px;
    border-radius: 0;
}

.sms_select_type option span{
    padding: 10px;
    height: 20px;
}

tr {
    width: 100%;
}

table {
    overflow-x: auto;
}

.td_sms {
    width: 18% !important;
}

.td_width {
    max-width: 8.5% !important;
    width: 8.5% !important;
}

.td_date {
    max-width: 9% !important;
    width: 9% !important;
}

@media(max-width:1200px) {
    td, th {
        min-width: 100px;
        max-width: none;
        width: 100px;
    }
}

@media(max-width: 530px) {
    #nav_links {
        flex-direction: column;
        align-items: flex-start;
    }
    #nav_links a {
        margin-left: 0;
        margin-top: 3px;
        min-width: 150px;
    }
    .td_action {
        min-width: 170px !important;
    }
    .td_sms {
        max-width: 200px;
    }
}