/* ═══════════════════════════════════════════════════════
   GUESTBOOK / FORMS STYLESHEET
   Forms & Guestbook Entry Feed
   ═══════════════════════════════════════════════════════ */

.guestbook-page {
   min-height: 100vh;
}

.guestbook-content {
   padding: 0 18px 18px;
   width: 650px;
}

.guestbook-embed-shell {
    /* Framing wrapper that contains the SmartGB iframe */
    position: relative;
    padding: 4px;
    background-color: #1a1a1a;
    color: #e0e0e0;

    /* Thick black inner border with a deep red outer accent */
    border: 6px double #000000;
    outline: 2px solid #65079b;

    margin: 10px auto;
    overflow: hidden;
}

/* SmartGB embed frame and responsive behavior */
.smartgb-embed-frame {
    display: block;
    width: 100%;
    min-height: 1200px;
    border: 0;
    background: #000;
    position: relative;
    z-index: 1;
}

/* Ensure small screens keep the framed vibe but remain responsive */
@media (max-width: 540px) {
    .guestbook-embed-shell {
        max-width: calc(100% - 32px);
        margin: 24px auto;
        padding: 6px;
    }

    .smartgb-embed-frame {
        min-height: 760px;
    }
}

@media (max-width: 680px) {
   .guestbook-content {
       padding: 0 12px 14px;
   }
}

.side-image {
    position: fixed;
    top: 0;
    height: 100vh;
    width: auto;
    image-rendering: pixelated;
    z-index: 0;
    pointer-events: none;
}
.left {
    left: 0;
}
.right {
    right: 0;
    transform: scaleX(-1);
    }