.modalOverlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background-color: rgba(0, 0, 0, 0.6); display: flex; align-items: center; justify-content: center; z-index: 1000; } .modal { background-color: var(--color-white); border-radius: var(--radius); border-top: 4px solid var(--color-primary); width: 90%; max-width: 500px; max-height: 80vh; overflow-y: auto; } .modalHeader { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; border-bottom: 1px solid var(--color-gray-border); } .modalHeader h2 { margin: 0; font-size: 18px; font-weight: 600; color: var(--color-text); } .closeBtn { background: none; border: none; font-size: 24px; color: var(--color-text-secondary); cursor: pointer; } .modalBody { padding: 24px; }