.section__row {
    width: 100%;
}

.row {
    padding: 10px 0 10px 0;
}

.row__title {
    font-size: 16px;
}

.row__error {
    color: rgb(114, 114, 114);
    margin: auto 10px auto 0;
}

.upload-control {
    display: flex;
    flex-direction: column;
}

.upload-control__readonly-input {
    text-align: center;
    width: 300px;
}

.upload-control__upload-button {
    margin-bottom: 10px;
}

.upload-control__import-button {
    margin: 0 0 0 auto;
}

.table__column--100 {
    width: 100%;
}

.table__column--50 {
    width: 50%;
}

.table__column--25 {
    width: 25%;
}

.table__column--12 {
    width: 12.5%;
}

.custom-table {
    font-size: 13px;
}

.custom-table__row--accent {
    font-size: 15px;
    font-weight: bold;
}

.custom-table__row {
    display: flex;
}

.custom-table__column {
    padding: 10px 20px;
    line-height: 20px;
    text-align: left;
    border-bottom: 1px solid #e9e9eb;
}

.custom-table__column--flex-column {
    display: flex;
    flex-direction: column;
}

.custom-table__error {
    color: rgb(213, 20, 20);
    font-size: 11px;
    margin-top: 5px;
    line-height: 13px;
    font-style: italic;
}

.green {
    color: rgb(19 177 75);
}

.red {
    color: rgb(213, 20, 20);
}

.text-end {
    text-align: end;
}

.display-none {
    display: none;
}

.tooltip-container {
    position: relative;
    display: inline-block;
    margin-left: 5px;
    margin-right: 10px;
}

.tooltip-content {
    width: 400px;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    z-index: 1;
    top: 100%;
    left: 0;
    transform: translateX(-100%);
    padding: 8px;
    background-color: #000;
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
    transition: visibility 0s, opacity 0.3s ease-in-out;
}

.tooltip-container:hover .tooltip-content {
    visibility: visible;
    opacity: 1;
}

.tooltip-content::after {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent #000 transparent;
}