/* Same CSS as before */ 
.modal { display: none; position: fixed; z-index: 1000; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.6); align-items: center; justify-content: center; }
.modal-content { position: relative; background-color: #fefefe; margin: auto; padding: 0; border-radius: 8px; width: 95vw; height: 90vh; max-width: 1200px; box-shadow: 0 5px 15px rgba(0,0,0,0.3); display: flex; flex-direction: column; overflow: hidden; }
.modal-browser-frame { display: flex; flex-direction: column; height: 100%; border: 1px solid #ccc; border-radius: 8px; }
.modal-address-bar { padding: 8px 12px; background-color: #e9ecef; border-bottom: 1px solid #ccc; display: flex; align-items: center; gap: 10px; }
.modal-address-bar .lock-icon { width: 16px; height: 16px; color: #28a745; }
.modal-address-bar .url-text { flex-grow: 1; background-color: #fff; border: 1px solid #ced4da; border-radius: 20px; padding: 5px 12px; font-size: 14px; color: #495057; font-family: monospace; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.iframe-container { position: relative; flex-grow: 1; }
.modal-content iframe { width: 100%; height: 100%; border: none; }
.modal-loader { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: #ffffff; z-index: 10; display: flex; flex-direction: column; align-items: center; justify-content: center; transition: opacity 0.5s ease-out; }
.modal-loader.hidden { opacity: 0; pointer-events: none; }
.spinner-animation { width: 50px; height: 50px; border: 5px solid #f3f3f3; border-top: 5px solid #227FB9; border-radius: 50%; animation: spin 1s linear infinite; margin-bottom: 20px; }
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.loader-text { font-size: 1.1em; font-weight: 500; color: #333; }
.close-button { position: absolute; top: 10px; right: 15px; z-index: 20; color: #888; font-size: 32px; font-weight: bold; cursor: pointer; line-height: 1; background: none; border: none; padding: 0; }
.close-button:hover, .close-button:focus { color: black; }
.sassa-open-btn { background-color: #227FB9; color: #fff; padding: 12px 20px; border: none; border-radius: 6px; cursor: pointer; font-size: 16px; }
.sassa-open-btn:hover { background-color: #1a5f8d; }