.report-modal-backdrop { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.5); display: flex; align-items: center; justify-content: center; z-index: 2000; animation: report-backdrop-fade 0.15s ease-out; } @keyframes report-backdrop-fade { from { opacity: 0; } to { opacity: 1; } } .report-modal { background: var(--bg); border: 1px solid var(--border); border-radius: 16px; width: 90%; max-width: 420px; max-height: 85vh; overflow-y: auto; box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2); animation: report-modal-fade 0.15s ease-out; } @keyframes report-modal-fade { from { opacity: 0; transform: scale(0.95) translateY(8px); } to { opacity: 1; transform: scale(1) translateY(0); } } .report-modal-header { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid var(--border); } .report-modal-title { font-size: 16px; font-weight: 700; color: var(--text-h); display: flex; align-items: center; gap: 8px; margin: 0; } .report-modal-title svg { color: #ef4444; font-size: 14px; width: 14px; height: 14px; } .report-modal-close { padding: 4px 8px; border: none; background: none; color: var(--text); cursor: pointer; border-radius: 8px; transition: background 0.15s; font-size: 16px; } .report-modal-close:hover { background: var(--hover-bg); } .report-modal-body { padding: 16px 20px; } .report-modal-description { font-size: 14px; color: var(--text); margin: 0 0 12px; } .report-modal-reasons { display: flex; flex-direction: column; gap: 4px; margin-bottom: 12px; } .report-modal-reason { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 10px; cursor: pointer; transition: background 0.1s; font-size: 14px; color: var(--text-h); } .report-modal-reason:hover { background: var(--hover-bg); } .report-modal-reason.selected { background: var(--accent-bg); color: var(--accent); } .report-modal-reason input[type="radio"] { accent-color: var(--accent); width: 16px; height: 16px; flex-shrink: 0; } .report-modal-details { width: 100%; padding: 10px 12px; border: 1px solid var(--border); border-radius: 10px; background: var(--bg); color: var(--text-h); font-size: 14px; font-family: inherit; resize: vertical; min-height: 60px; outline: none; transition: border-color 0.15s; box-sizing: border-box; } .report-modal-details:focus { border-color: var(--accent); } .report-modal-error { color: #ef4444; font-size: 13px; margin-top: 8px; } .report-modal-footer { display: flex; justify-content: flex-end; gap: 8px; padding: 12px 20px; border-top: 1px solid var(--border); } .report-modal-cancel { padding: 8px 16px; border-radius: 999px; border: 1px solid var(--border); background: none; color: var(--text-h); font-size: 14px; font-family: inherit; cursor: pointer; transition: background 0.15s; } .report-modal-cancel:hover { background: var(--hover-bg); } .report-modal-btn { padding: 8px 20px; border-radius: 999px; border: none; background: #ef4444; color: #fff; font-size: 14px; font-weight: 600; font-family: inherit; cursor: pointer; transition: opacity 0.15s; } .report-modal-btn:hover:not(:disabled) { opacity: 0.9; } .report-modal-btn:disabled { opacity: 0.5; cursor: not-allowed; } .report-modal-success { padding: 32px 20px; text-align: center; } .report-modal-success-icon { font-size: 32px; width: 32px; height: 32px; color: #22c55e; margin-bottom: 12px; } .report-modal-success p { font-size: 14px; color: var(--text); margin: 0 0 16px; line-height: 1.5; } .report-modal-success .report-modal-btn { background: var(--accent); }