
/* SENSOY24 Update 35 */

.interview-manager-card,
.candidate-interview-card {
    margin-top: 22px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
}

.interview-manager-head,
.candidate-interview-head {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
}

.interview-manager-head h2,
.candidate-interview-head h2 {
    margin: 5px 0;
}

.interview-create-form {
    margin-top: 18px;
}

.interview-history {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.interview-history > article {
    padding: 13px 0;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    border-bottom: 1px solid var(--line);
}

.interview-history > article:last-child {
    border-bottom: 0;
}

.interview-history > article > div:first-child {
    display: grid;
    gap: 5px;
}

.interview-history > article span,
.interview-history > article small {
    color: #68737e;
}

.interview-history-actions {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.interview-history-actions form {
    margin: 0;
}

.candidate-interview-list {
    display: grid;
    gap: 16px;
}

.candidate-interview-card {
    margin-top: 0;
}

.interview-status-badge {
    display: inline-flex;
    padding: 6px 9px;
    border-radius: 999px;
    background: #eef1f4;
    color: #57626d;
    font-size: 12px;
    font-weight: 900;
}

.status-accepted .interview-status-badge {
    background: #edf7ef;
    color: #286236;
}

.status-declined .interview-status-badge,
.status-cancelled .interview-status-badge {
    background: #fff0f0;
    color: #842029;
}

.interview-date-box {
    min-width: 120px;
    padding: 12px;
    display: grid;
    gap: 3px;
    text-align: center;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #f7f8fa;
}

.interview-date-box strong {
    font-size: 18px;
}

.candidate-interview-facts {
    margin-top: 18px;
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
}

.candidate-interview-facts > div {
    padding: 9px 11px;
    display: grid;
    gap: 3px;
    border-radius: 10px;
    background: #f7f8fa;
}

.candidate-interview-facts span {
    color: #75808a;
    font-size: 11px;
}

.candidate-interview-message {
    margin-top: 16px;
    padding: 14px;
    border-left: 3px solid #111;
    background: #f7f8fa;
    line-height: 1.6;
}

.candidate-interview-actions {
    margin-top: 18px;
}

.interview-response-form {
    margin-top: 14px;
    display: grid;
    gap: 10px;
}

.interview-response-form > div {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.employer-interview-table-wrap {
    overflow-x: auto;
}

.employer-interview-table {
    width: 100%;
    min-width: 900px;
    border-collapse: collapse;
}

.employer-interview-table th,
.employer-interview-table td {
    padding: 14px 10px;
    text-align: left;
    border-bottom: 1px solid var(--line);
}

.employer-interview-table th {
    color: #68737e;
    font-size: 12px;
    text-transform: uppercase;
}

.employer-interview-table td small {
    display: block;
    margin-top: 4px;
    color: #68737e;
}

@media (max-width: 700px) {
    .interview-manager-head,
    .candidate-interview-head,
    .interview-history > article {
        flex-direction: column;
    }

    .interview-date-box {
        min-width: 0;
        width: 100%;
        text-align: left;
    }
}
