.commonTable {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
}

.commonTable_toolBar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    gap: 20px;
}

.commonTable_toolBar-justifyAround {
    justify-content: space-around;
}

.commonTable_numberOfResults {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
}

.commonTable_pagingSizeRadio {
    display: inline-flex;
    align-items: center;
}

.commonTable_table {
    width: 100%;
}

.commonTable_header {
    width: 100%;
}

.commonTable_headerRow {
    width: 100%;
    background-color: var(--colors-persian-green-500);
}

.commonTable_headerTh {
    height: 70px;
    padding: 16px 10px;
    vertical-align: middle;
    text-align: start;
}

.commonTable_headerTh:first-child {
    border-radius: 10px 0 0 10px;
}

.commonTable_headerTh:last-child {
    border-radius: 0 10px 10px 0;
}

.commonTable_headerText {
    font-size: 13px;
    font-weight: 400;
    line-height: 13px;
    color: #ffffff;
}

.commonTable_tableBody {
    width: 100%;
}

.commonTable_row {
    width: 100%;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-color: var(--01-main-gray-icon);
}

.commonTable_data {
    gap: 9px;
    padding: 13px 10px;
    position: relative;
    vertical-align: middle;
}

.commonTable_data-multiLine {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.commonTable_data-action {
    display: flex;
    gap: 10px;
}

.commonTable_dataText {
    font-size: 13px;
    font-weight: 400;
    line-height: 13px;
    line-break: anywhere;
    color: var(--01-main-black);
}

.commonTable_dataLink {
    font-size: 12px;
    font-weight: 400;
    color: var(--colors-persian-green-600);
    text-decoration: underline;
    text-decoration-color: var(--colors-persian-green-600);
    white-space: nowrap;
}

.commonTable_actionButton {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 4px;
    background-color: var(--colors-persian-green-500);
    border-radius: 8px;
    border: none;
    cursor: pointer;
}

.commonTable_actionButtonText {
    font-size: 12px;
    font-weight: 400;
    color: #ffffff;
}