/* =========================================================
   Flipsnack embed inside the GB overlay panel
   ========================================================= */

#gb-overlay-49978 .gb-overlay__content {
    padding: 0 !important;
    display: flex;
    flex-direction: column;
}

#fc-embed-target {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

#fc-embed-target iframe {
    width: 100% !important;
    height: 100% !important;
    flex: 1;
    border: none !important;
    display: block;
    min-height: 500px;
}

.fc-embed-loading,
.fc-embed-error {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 200px;
    color: var(--navy-dark, #001a30);
    font-size: 0.95rem;
    gap: 12px;
    flex-direction: column;
}

.fc-embed-loading::before {
    content: '';
    width: 32px;
    height: 32px;
    border: 3px solid var(--green-light, #e0f0e5);
    border-top-color: var(--green-strong, #259245);
    border-radius: 50%;
    animation: fcSpin 0.7s linear infinite;
    flex-shrink: 0;
}

@keyframes fcSpin {
    to { transform: rotate(360deg); }
}
