.shift-dialog {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.shift-dialog .dialog-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
    padding: 24px;
}

.shift-dialog .dialog-card-title {
    color: #0f172a;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.shift-dialog .dialog-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.shift-dialog .dialog-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1 1 100%;
    min-width: 0;
}

.shift-dialog .dialog-field--toggle {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.shift-dialog .field-label {
    color: #0f172a;
    font-size: 0.95rem;
    font-weight: 600;
}

.shift-dialog .duplicate-tasks {
    margin-top: 16px;
    padding: 16px;
    border-radius: 14px;
    border: 1px dashed #e2e8f0;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.shift-dialog .duplicate-tasks ul {
    margin: 0;
    padding-left: 20px;
    color: #475569;
}

.shift-dialog .dialog-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.shift-dialog .rz-inputtext,
.shift-dialog .rz-textarea,
.shift-dialog .rz-dropdown,
.shift-dialog .rz-datepicker,
.shift-dialog .rz-colorpicker {
    border-radius: 12px;
    min-height: 44px;
}

@media (min-width: 900px) {
    .shift-dialog .dialog-field {
        flex: 1 1 calc(50% - 16px);
    }
}
