.custom-table{
    border-radius: 10px;
}

.custom-table__header{
    display: grid;
    align-items: center;

    background-color: var(--table-row-hover);
    border: 0.5px solid var(--border-primary);
    border-radius: 10px 10px 0 0;
}

.custom-table__header-item{
    word-break: break-all;
    flex-shrink: 0;

    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 6px;

    color: var(--icon-primary);
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
    text-transform: uppercase;
}

.custom-table__header-text{
    display: flex;
    align-items: center;
    justify-content: center;
    gap:6px;

    padding: 10px 14px;
}

.custom-table__header-refresh{
    height: 40px;
    padding: 9px 15px;
  }

.custom-table__header-item:not(:last-of-type),
.custom-table__item:not(:last-of-type){
    border-right: 0.5px solid var(--border-primary);
}

.custom-table__row{
    display: grid;
    align-items: center;

    border: 0.5px solid var(--border-primary);
    border-top: none;
}

.custom-table__row:nth-of-type(odd){
    background-color: #F8F9FA;
}

.custom-table__row:last-of-type{
    border-radius: 0 0 10px 10px;
}


.custom-table__item,
.custom-details-table__item{
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    color: var(--text-primary);
    font-weight: 400;
    line-height: 20px;
}

.custom-table__item{
    word-break: break-all;
    gap:6px;
    font-size: 15px;
    padding: 16px 14px;
}

.custom-table__item.last-item{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;

    padding: 0;
}

.custom-table__item.last-item span{
    padding: 16px 14px;
}

.custom-table__item-opacity{
    opacity: 0.7;
}

.custom-table__arrow{
    cursor: pointer;
    flex-shrink: 0;
    width: 52px;
    height: 100%;

    border-left: 0.5px solid var(--border-primary);
    padding: 15px;

}

.custom-details-table{
    max-width: 400px;
    width: 100%;
}

.custom-details-table__item{
    gap: 15px;
    font-size: 13px;

    border: 0.5px solid var(--border-primary);
    border-top: none;
    padding: 10px 16px;
}

.custom-details-table__item:first-of-type{
    border: 0.5px solid var(--border-primary);
    border-radius: 10px 10px 0 0 ;
}

.custom-details-table__item:last-of-type{
    border-radius: 0 0 10px 10px;
}

.custom-details-table__item:nth-of-type(odd){
    background-color: #F8F9FA;
}

.custom-details-table__item:first-child{
    font-weight: 500;
}