/* File: src/components/PreferencesSelector.module.css */ .container { position: fixed; top: 0; left: 0; width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; background: linear-gradient(135deg, #42475c 0%, #20222f 100%); z-index: 1000; padding: 16px; } .card { width: 90%; max-width: 600px; padding: 2rem; border-radius: 16px; background: rgba(255, 255, 255, 0.9); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); backdrop-filter: blur(10px); max-height: calc(100vh - 32px); overflow: auto; } .optionsContainer { margin: 2rem 0; width: 100%; } .optionCard { transition: all 0.3s ease; border: 2px solid transparent; margin-bottom: 0.5rem; } .selected { border-color: #1890ff; background-color: rgba(24, 144, 255, 0.05); } .buttonContainer { margin-top: 1.5rem; } .continueButton { min-width: 200px; height: 48px; border: none; border-radius: 24px; font-weight: 500; box-shadow: 0 4px 12px rgba(24, 144, 255, 0.15); } .continueButton:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(24, 144, 255, 0.2); } @media (max-width: 600px) { .container { align-items: flex-start; padding: 12px; } .card { width: 100%; max-width: 100%; padding: 1rem; border-radius: 14px; max-height: calc(100vh - 24px); } .optionsContainer { margin: 1rem 0; } .optionCard { margin-bottom: 0.75rem; } .continueButton { width: 100%; min-width: 0; height: 44px; border-radius: 14px; } } @media (max-width: 380px) { .card { padding: 0.85rem; } }