.shift-selection-dialog {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.shift-selection-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-selection-dialog .dialog-card-title {
    color: #0f172a;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.shift-selection-dialog .dialog-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.shift-selection-dialog .field-label {
    color: #0f172a;
    font-size: 0.95rem;
    font-weight: 600;
}

.shift-selection-dialog .shift-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.shift-selection-dialog .shift-card {
    border: none;
    color: #fff;
    border-radius: 14px;
    padding: 0.9rem;
    cursor: pointer;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    flex: 1 1 200px;
    min-width: 200px;
}

.shift-selection-dialog .shift-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.shift-selection-dialog .shift-title {
    font-weight: 700;
    margin-bottom: 0.1rem;
}

.shift-selection-dialog .shift-time {
    font-size: 0.9rem;
    opacity: 0.9;
}

.shift-selection-dialog .shift-chip {
    display: inline-block;
    margin-top: 0.35rem;
    padding: 0.15rem 0.35rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    font-size: 0.8rem;
}

.shift-selection-dialog .dialog-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.shift-selection-dialog .rz-inputtext {
    border-radius: 12px;
    min-height: 44px;
}
