.table {
    display: flex;
    padding: 20px;
    padding-top: 10px;
    padding-right: 10px;
    border-radius: 24px;
    background: #101626;
    flex-direction: column;
}

.table .plug {
    width: 100%;
    min-height: 300px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}
.table .plug .icon {
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.table .plug .icon svg {
    width: 100px;
    height: 100px;
    opacity: 0.2;
}
.table .plug span {
    font-weight: 400;
    font-size: 16px;
    display: flex;
    width: 50%;
    opacity: 0.3;
    justify-content: center;
    text-align: center;
}

.table .head {
    display: flex;
    padding: 20px 20px;
}
.table .head .col {
    color: #30344F;
    font-size: 14px;
    font-weight: 500;
     /* 15.4px */
    width: 100%;
    text-align: center;
}
.table .body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.table .body .tr {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    border-radius: 14px;
    margin-right: 10px;
}

.table .body .tr:nth-child(odd) {
    background: rgba(79, 84, 106, 0.10);
}

.table .body .tr:nth-child(even) {
    background: #141A2A;
}

.table .body .tr .col {
    width: 100%;
    text-align: center;
    color: rgba(255, 255, 255, 0.70);
    font-size: 14px;
    font-weight: 400;
}

.table .col.id {
    text-align: left !important;
}

.table .col.date {
    text-align: right !important;
}

.table .body .col.id {
    color: rgba(255, 255, 255, 0.70);
    font-size: 14px;
    font-weight: 500;
}