/** * 피드백 위젯 스타일 */ /* 플로팅 버튼 */ .feedback-floating-btn { position: fixed; bottom: 24px; right: 24px; width: 56px; height: 56px; border-radius: 50%; background-color: #0d6efd; color: white; border: none; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 24px; transition: all 0.3s ease; z-index: 1000; } .feedback-floating-btn:hover { background-color: #0b5ed7; transform: scale(1.1); box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2); } .feedback-floating-btn:active { transform: scale(0.95); } /* 모달 오버레이 */ .feedback-modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.5); z-index: 1050; overflow-y: auto; padding: 20px; } .feedback-modal.show { display: flex; align-items: center; justify-content: center; } /* 모달 컨텐츠 */ .feedback-modal-content { background-color: white; border-radius: 8px; box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2); width: 100%; max-width: 600px; max-height: 90vh; display: flex; flex-direction: column; animation: feedbackModalSlideIn 0.3s ease-out; } @keyframes feedbackModalSlideIn { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } } /* 모달 헤더 */ .feedback-modal-header { padding: 16px 24px; border-bottom: 1px solid #dee2e6; display: flex; align-items: center; justify-content: space-between; } .feedback-modal-title { margin: 0; font-size: 1.25rem; font-weight: 600; color: #212529; } .feedback-close { background: none; border: none; font-size: 20px; cursor: pointer; color: #6c757d; padding: 0; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 4px; transition: all 0.2s; } .feedback-close:hover { background-color: #f8f9fa; color: #212529; } /* 모달 바디 */ .feedback-modal-body { padding: 24px; overflow-y: auto; flex: 1; } /* 스크린샷 미리보기 */ .feedback-screenshot-preview { background-color: #f8f9fa; border: 2px dashed #dee2e6; border-radius: 8px; padding: 20px; margin-bottom: 20px; text-align: center; min-height: 200px; display: flex; align-items: center; justify-content: center; flex-direction: column; } .feedback-loading { display: flex; flex-direction: column; align-items: center; justify-content: center; } .feedback-screenshot-img { max-width: 100%; height: auto; border-radius: 4px; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); } /* 모달 푸터 */ .feedback-modal-footer { padding: 16px 24px; border-top: 1px solid #dee2e6; display: flex; gap: 12px; justify-content: flex-end; } /* 반응형 디자인 */ @media (max-width: 768px) { .feedback-floating-btn { width: 48px; height: 48px; font-size: 20px; bottom: 16px; right: 16px; } .feedback-modal { padding: 10px; } .feedback-modal-content { max-width: 100%; } .feedback-modal-header, .feedback-modal-body, .feedback-modal-footer { padding: 16px; } .feedback-screenshot-preview { min-height: 150px; padding: 15px; } } /* 인쇄 시 숨기기 */ @media print { .feedback-floating-btn, .feedback-modal { display: none !important; } } /* 폼 스타일 개선 */ .feedback-modal-body .form-label { font-weight: 500; color: #495057; margin-bottom: 8px; } .feedback-modal-body .form-select, .feedback-modal-body .form-control { border-radius: 6px; } .feedback-modal-body .alert { border-radius: 6px; } /* 토스트 스타일 */ .toast-container .toast { min-width: 300px; } .toast-header.bg-success { background-color: #198754 !important; }