/**********************************************************************************************
 * 파일명: modal.css
 * 저작권:
 *     NOWC-2026-ROOKISEEDU-78M33SQ
 *     © 나우컴퍼니(NOWCOMPANY) | https://nowcompany.kr
 *     All rights reserved.
 **********************************************************************************************/

@charset "utf-8";
@import url('../css/font/font.css');
.custom-modal-overlay {font-family: "Pretendard", "Pretendard Variable", sans-serif; letter-spacing: -1px; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.4); display: flex; align-items: center; justify-content: center; z-index: 9999; }
.custom-modal-overlay .custom-modal { background: white; padding: 20px 30px; border-radius: 4px; width: 90%; max-width: 400px; box-shadow: 0 10px 25px rgba(0,0,0,0.2); text-align: center; }
.custom-modal .modal-buttons { margin-top: 20px; display: flex; gap: 10px; justify-content: center; }
.modal-buttons .btn-primary, .modal-buttons .btn-secondary { padding: 8px 16px; border: none; border-radius: 4px; cursor: pointer; font-weight: bold; }
.modal-buttons .btn-primary { background-color: #007bff; color: white; }
.modal-buttons .btn-secondary { background-color: #f0f0f0; color: #333; }
.modal-buttons .btn-primary:hover { background-color: #0056b3; }
.modal-buttons .btn-secondary:hover { background-color: #e0e0e0; }