table {
    width: 100%;
    border-spacing: 0;
    text-align: center;
    box-shadow: 0 0 50px var(--table-shadow-color);
}

.table-wrapper {
    height: 100%;
    min-width: 610px;
    width: 50%;
    margin: 0 0 0 25%;
    display: block;
}

.add-resume {
    height: 100px;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: end;
}

.add-resume-title {
    font-family: Roboto, serif;
    font-style: normal;
    font-weight: bold;
    font-size: 15px;

    width: 70px;
    margin-left: 13px;
    display: block;

    color: var(--add-resume-text-color);
}

.resumes-list {
    width: 100%;
}

.resumes-list img {
    height: 20px;
}

.t-header, tr {
    font-family: Roboto, serif;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 19px;

    height: 70px;

    color: var(--table-header-text-color);
    background: var(--table-header-background);
}

.t-body, tr {
    font-family: Open Sans, serif;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 19px;

    color: var(--table-text-color);
}

.t-body, tr:nth-child(odd) {
    height: 70px;
    background: var(--table-odd-row-background);
}

.t-body, tr:nth-child(even) {
    height: 90px;
    background: var(--table-even-row-background);
}

.resumes-list th:first-of-type {
    border-top-left-radius: 10px;
}

.resumes-list th:last-of-type {
    border-top-right-radius: 10px;
}

.resumes-list tr:last-of-type td:first-of-type {
    border-bottom-left-radius: 10px;
}

.resumes-list tr:last-of-type td:last-of-type {
    border-bottom-right-radius: 10px;
}

.head-name-column, .name-column {
    font-weight: bold;
    width: 230px !important;
    min-width: 150px !important;
    padding: 0 0 0 38px;
}


.head-name-column {
    text-align: center;
}

.name-column {
    text-align: start;
}

.info-column {
    text-align: start;
}

.img-column {
    align-content: center;
    width: 110px !important;
    min-width: 110px !important;
}