/* Modal Basic Styling */
.ri-modal-wrapper { position: fixed; inset: 0; z-index: 99999; display: none; align-items: center; justify-content: center; padding: 20px; }
.ri-modal-wrapper .ri-modal-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.85); backdrop-filter: blur(4px); }
.ri-modal-wrapper .ri-modal-container { position: relative; background: #fff; width: 100%; max-width: 650px; padding: 40px; border-radius: 15px; z-index: 10; box-shadow: 0 15px-50px rgba(0,0,0,0.4); }
.ri-modal-wrapper .ri-modal-close { position: absolute; top: 10px; right: 20px; font-size: 40px; text-decoration: none; color: #333; line-height: 1; }
.ri-modal-wrapper .ri-modal-body-content { max-height: 75vh; overflow-y: auto; padding-right: 10px; }
.ri-modal-wrapper #modal-dynamic-title { margin-top: 0; font-size: 26px; border-bottom: 1px solid #ddd; padding-bottom: 15px; margin-bottom: 20px; }

/* Scrollbar Styling for Popup */
.ri-modal-wrapper .ri-modal-body-content::-webkit-scrollbar { width: 6px; }
.ri-modal-wrapper .ri-modal-body-content::-webkit-scrollbar-thumb { background: #ccc; border-radius: 10px; }

