/* Навигационные кнопки (общие для всех экранов) */
.nav-buttons {
    display: flex !important;
    gap: 12px !important;
    padding: 16px !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background: white !important;
    border-top: 1px solid #e0e0e0 !important;
    z-index: 100 !important;
}

.nav-button {
    flex: 1 !important;
    padding: 16px !important;
    border: none !important;
    border-radius: 10px !important;
    font-size: 16px !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
}

.back-button {
    background: #f0f0f0 !important;
    color: #333 !important;
}

.next-button {
    background: #0066CC !important;
    color: white !important;
}

.next-button:disabled {
    background: #cccccc !important;
    cursor: not-allowed !important;
}

.selection-container {
    background: white !important;
    padding: 12px 16px !important;
    border-bottom: 1px solid #e0e0e0 !important;
}

.selection-info {
    font-size: 14px !important;
    color: #0066CC !important;
}

.selection-placeholder {
    font-size: 14px !important;
    color: #999 !important;
}
