.coach-eval-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.inline-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

@media (max-width: 768px) {
    .inline-grid-2 {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #4b5563;
}

.form-control,
.form-select,
.statement-box,
.coach-eval-text {
    width: 100%;
    border: 1px solid #dfe3eb;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 14px;
    background: #fff;
    font-family: inherit;
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.form-control:focus,
.form-select:focus,
.statement-box:focus,
.coach-eval-text:focus {
    border-color: #00a3ff;
    box-shadow: 0 0 0 1px rgba(0, 163, 255, 0.25);
}

.coach-eval-text {
    min-height: 150px;
    resize: vertical;
}

.validation-text {
    color: #d32f2f;
    font-size: 12px;
    margin-top: 4px;
}

.btn-add-eval {
    align-self: flex-start;
    margin: 4px 0 10px 0;
}

.simple-table-wrap {
    margin-top: 14px;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    width: 100%;
}

.simple-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.simple-table thead {
    background: #f5f6ff;
}

.simple-table th,
.simple-table td {
    padding: 12px 14px;
    border-bottom: 1px solid #e5e7eb;
    text-align: left;
    vertical-align: middle;
}

.simple-table tbody tr:nth-child(even) {
    background: #f9fafb;
}

.item-text {
    font-weight: 600;
    color: #111827;
}

.table-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.table-link {
    background: none;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 6px;
    color: #2563eb;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, border-color 0.15s;
}

.table-link.danger {
    color: #d32f2f;
    border-color: #fecdd3;
}

.table-link:hover {
    background: #f3f4f6;
}

.action-icon {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

.empty-cell {
    text-align: center;
    color: #6b7280;
    font-size: 13px;
}
