/* Simple retro guestbook styles */
.guestbook-wrap{max-width:820px;margin:36px auto;padding:20px;background:rgba(0,0,0,0.6);box-shadow:0 4px 12px rgba(0,0,0,0.6);border:2px solid #222}
/* set body text to Comic Sans as requested */
html,body{height:100%;margin:0;font-family: "Comic Sans MS", "Comic Sans", cursive;background:#0a0a0a;color:#e9e9e9}

/* guestbook title in Cooper (fallbacks provided) and neon green */
h1{font-family: 'Cooper', 'Cooper Black', 'Arial Black', serif;color:#39FF14;margin:0 0 6px}
.hint{color:#bfbfbf;margin:6px 0 18px}
.guestbook-form label{display:block;margin-bottom:10px}
.guestbook-form input[type="text"],.guestbook-form textarea{width:100%;box-sizing:border-box;padding:8px;border:1px solid #333;background:#0f0f0f;color:#eee}
.guestbook-form textarea{min-height:80px;resize:vertical}
.form-actions{display:flex;gap:8px;align-items:center}
button{background:#111;color:#fff;border:1px solid #444;padding:8px 12px;cursor:pointer}
button:hover{background:#222}
.guest-stats{margin:14px 0;color:#cfcfcf}
.guest-list{display:flex;flex-direction:column;gap:12px}
.guest-entry{background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.06));padding:10px;border:1px solid rgba(255,255,255,0.02)}
.guest-entry .meta{font-size:12px;color:#9b9b9b;margin-bottom:6px}
/* name and message in bright purple */
.guest-entry .name{color:#C800FF;font-weight:bold}
.guest-entry .msg{white-space:pre-wrap;color:#b36aff}
.captcha-row{display:flex;align-items:center;gap:8px;margin:10px 0;flex-wrap:wrap}
.captcha-label{color:#bbb;font-size:13px;width:100%}
.captcha-image{height:50px;width:auto;border:1px solid #333;border-radius:3px;image-rendering:auto}
#captcha-answer{width:140px;padding:6px;border:1px solid #333;background:#0f0f0f;color:#eee;text-transform:uppercase;letter-spacing:3px;font-size:16px;font-family:monospace}
#captcha-refresh{padding:6px;border:1px solid #333;background:#111;color:#fff}

/* refresh button spin animation */
@keyframes gb-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
#captcha-refresh.spin { animation: gb-spin 0.6s linear; }

.empty{color:#7a7a7a;font-style:italic}
