<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.fullscreen-frame-container {
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    flex-direction: column;
    position: relative; /* Ensure children can be positioned relative to this container */
}

.fullscreen-frame-container iframe {
    flex-grow: 1; /* Adjust to make room for fullscreen-frame-bottom */
    width: 100%;
    border: none;
}

.fullscreen-frame-bottom {
    width: 100%;
    padding: 5px 10px 3px 10px;
    background-color: white;
    display: flex;
    z-index: 1;
    font-weight: lighter;
    justify-content: left;
}

/* Adjust justify-content for RTL languages */
.dir-rtl .fullscreen-frame-bottom {
    justify-content: right;
}

.fullscreen-frame-bottom a {
    font-size: 1rem;
    color: #1C46C0;

    @media only screen and (max-width: 480px) {
        font-weight: 300;
    }
}</pre></body></html>