.employee-working-time-editor {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.employee-working-time-editor-header {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.employee-working-time-editor-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.employee-working-time-editor-title {
    color: #0f172a;
    font-size: 0.98rem;
    font-weight: 600;
}

.employee-working-time-editor-hint,
.employee-working-time-editor-empty,
.employee-working-time-editor-row-meta {
    color: #64748b;
    font-size: 0.82rem;
}

.employee-working-time-editor-empty {
    padding: 0.85rem 1rem;
    border: 1px dashed #cbd5e1;
    border-radius: 16px;
    background: #f8fafc;
}

.employee-working-time-editor-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.employee-working-time-editor-row {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #f8fafc;
}

.employee-working-time-editor-row-main {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.employee-working-time-editor-row-title {
    color: #0f172a;
    font-size: 0.94rem;
    font-weight: 700;
}

.employee-working-time-editor-row-subtitle {
    color: #1e293b;
    font-size: 0.88rem;
    font-weight: 600;
}

.employee-working-time-editor-row-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
}

@media (min-width: 760px) {
    .employee-working-time-editor-header {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }

    .employee-working-time-editor-row {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .employee-working-time-editor-row-main {
        flex: 1 1 auto;
        min-width: 0;
    }
}
