﻿/* ============ Form general section ============ */
.form_table {
    width: 100%;
    color: var(--dark-blue);
}

.form_table thead {
    background-color: var(--light-violet);
}

.form_table thead th {
    font-size: 12px;
    font-weight: bold;
    padding: 14px 22px;
    letter-spacing: 0.5px;
}

.form_table tbody td {
    font-size: 14px;
    font-weight: normal;
    padding: 22px;
}

.form_table .status {
    padding: 4px 12px;
    border-radius: 24px;
    font-weight: 500;
}

.form_table .status.proceed {
    background-color: var(--light-green);
    color: var(--green);
}

.form_table .status.inprogress {
    background-color: var(--light-yellow);
    color: var(--yellow);
}

.form_table .status.failed {
    background-color: var(--light-red);
    color: var(--red);
}

.form_table tr:nth-child(even){
    background-color: var(--light-grey-5);
}

.form_table thead tr:first-of-type th:first-of-type {
    border-top-left-radius: 8px;
}

.form_table thead tr:first-of-type th:last-of-type {
    border-top-right-radius: 8px;
}

.form_table tbody tr:last-of-type th:first-of-type {
    border-bottom-left-radius: 8px;
}

.form_table tbody tr:last-of-type th:last-of-type {
    border-bottom-right-radius: 8px;
}