/* ============================================================
   Guestbook Page – guestbook.css
   Hans Rittmeier GmbH | rittmeier-bedachung.de
   ============================================================ */

/* ============================================================
   Guestbook Design
   ============================================================ */

.guestbook-content {
    max-width: 900px !important;
    margin: 0 auto;
}

.gb-entries-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 60px;
}

/* ---------- Entry Card ---------- */

.gb-card {
    background: #ffffff;
        border: 2px solid #8cd5e3;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: transform 0.2s ease;
}

.gb-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.gb-card-header {
    background: #f8fafc;
    padding: 12px 20px;
    border-bottom: 1px solid #eef2f6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.gb-id {
    font-weight: bold;
    color: #4B6A8A;
    background: #eef2f6;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.9rem;
}

.gb-author {
    font-weight: 700;
    color: #2a4a6a;
    font-size: 1.1rem;
    flex: 1;
}

.gb-email a {
    color: #4B6A8A;
    text-decoration: none;
    font-size: 0.9rem;
}

.gb-email a:hover {
    text-decoration: underline;
}

.gb-card-body {
    padding: 20px;
    line-height: 1.6;
    color: #444;
    font-size: 1.05rem;
    word-wrap: break-word;
}

/* ---------- Form Styling (Inherits from Global) ---------- */

#insert_gaestebuch {
    background: #fcfdfe;
    padding: 30px;
    border-radius: 15px;
    border: 1px dashed #cedde2;
    margin-top: 40px;
}

.headline-h1 {
    color: #2a4a6a;
    margin-bottom: 30px;
}

/* Responsive adjustments for Guestbook entries */
@media (max-width: 768px) {
    .gb-entry-text {
        font-size: 12pt;
        padding: 15px;
    }
    
    #id, #name, #email {
        font-size: 11pt;
    }
}