.standing {
    width: 100%;
    
}
.standing > section {
    display: flex;
    padding: 5px;
    border-top: none;
    border-inline: none;
    
}
.standing > section > span {
    border-radius: 5px;
    padding: 2px;
    cursor: pointer;
}
.standing > section > span:nth-of-type(1) {
    margin-left: auto;
}



.standing > div {
    display: flex;
    
}
.standing > div > img {
    height: 32px;
    aspect-ratio: 1;
    object-fit: cover;
    object-position: center;
    overflow: visible;
    margin-block: 10px;
    margin-inline: 20px;
}
.standing > div > p {
    font-size: 18px;
    font-weight: 700;
    margin-block: auto;
}


.standing > table {
    min-width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}
.standing > table > thead > tr {
    text-align: left;
}
.standing > table tr {
    border-left: solid 3px transparent;
}
.standing > table > thead > tr > th {
    font-weight: 600;
}
.standing > table > thead > tr > th:nth-of-type(1) {
    padding-inline: 20px !important;
}
.standing > table > thead > tr > th:nth-of-type(2) {
    width: 100%;
}
.standing > table > thead > tr > th:not(:nth-of-type(2)) {
    padding: 10px;
    text-align: center;
    margin: 0;
}
.standing > table > tbody > tr > td:not(:nth-of-type(2)) {
    padding-block: 12px;
    padding-inline: 0;
    text-align: center;
    margin: 0;
}
.standing > table > tbody > tr > td:nth-of-type(1) {
    padding: 0;
}
.standing > table > tbody > tr > td:nth-of-type(1) > span {
    display: block;
    border-radius: 50%;
    background: #3bb552;
    color: black;
    font-weight: 700;
    margin-inline: auto;
    margin: 12px;
    height: min-content;
    aspect-ratio: 1;
    padding: 2px;
}

.standing > table > tbody > tr > td:nth-of-type(2) {
    display: flex;
    padding-block: 8px;
}

.standing > table > tbody > tr > td:nth-of-type(2) > img {
    aspect-ratio: 1;
    height: 32px;
    object-fit: cover;
    object-position: center;
    margin-block: auto;
}
.standing > table > tbody > tr > td:nth-of-type(2) > p {
    margin-block: auto;
    margin-left: 10px;
}





.standing-type-body {
    border-radius: 8px;
    position: fixed;
    display: none;
    box-shadow: 0 0 5px rgba(0,0,0,0.5);
    padding: 4px;
    min-width: 100px;
    opacity: 0;
    transition: all 0.2s;
}
.standing-type-body > button {
    display: block;
    font-size: 12px;
    background: transparent;
    font-family: var(--font-1);
    border: none;
    width: 100%;
    border-radius: 5px;
    color: var(--text-dark);
    font-weight: 300;
    text-align: left;
    padding: 3px;
    padding-inline: 10px;
}

.standing-type-body > button.active {
    background: var(--theme-color) !important;
    color: #000 !important;
    font-weight: 700 !important;
}


.standing-type-cover {
    position: fixed;
    width: 100%;
    height: 100%;
    background: transparent;
    display: none;
    top: 0;
    left: 0;
}