@charset "utf-8";
/* CSS Document */

/* ======================
   IFRAME STYLING
   ====================== */

/* Main Container */
--iframe-container {
    width: 90%;
    max-width: none;
    height: 600px;
    margin: 20px auto;
    position: relative;
    border-radius: 8px;
	border: 1px solid #ddd;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.iframe-container {
    width: 100%; /* Leaves space for shadow visibility */
    max-width: 1400px; /* Remove width restriction */
    height: 600px;
    margin: 0 auto; /* Center horizontally if space allows */
    border-radius: 8px;
    border: 1px solid #ddd;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background: #fff;
}

/* Iframe Element */
.iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .iframe-container {
        width: 95%;
        height: 500px;
    }
}

@media (max-width: 480px) {
    .iframe-container {
        width: 100%;
        height: 400px;
        border-radius: 0;
    }
}

/* Loading State (Optional) */
.iframe-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f8f8f8 url('loading-spinner.gif') center no-repeat;
    z-index: 10;
}


