body {
    font-family: "Comic Sans MS", "Trebuchet MS", sans-serif;
    background-color: #8C412E;
    cursor: default;
}
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}
.guestbook-form-container {
    background: linear-gradient(to bottom, #ffffff, #f0f8ff);
    padding: 25px;
    border-radius: 0;
    border: 3px solid #9fc5e8;
    box-shadow: 5px 5px 10px rgba(0,0,0,0.3);
    position: relative;
}
h1 {
    color: #0066cc;
    margin-bottom: 30px;
    text-shadow: 2px 2px 3px #cccccc;
    font-size: 32px;
    letter-spacing: 1px;
    font-weight: bold;
}

.welcome-message {
    text-align: center;
    margin-bottom: 20px;
    font-size: 40px;
    color: #ffffff;

}
.form-group {
    margin-bottom: 15px;
}
label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333399;
}
input, textarea {
    width: 100%;
    padding: 8px;
    border: 2px inset #ccccff;
    border-radius: 0;
    font-family: inherit;
    font-size: 14px;
    box-sizing: border-box;
    background-color: #f9f9ff;
}
textarea {
    height: 80px;
    resize: vertical;
}
button {
    background: linear-gradient(to bottom, #ff9900, #ff6600);
    color: white;
    padding: 10px 20px;
    border: 2px outset #ff9900;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    font-family: inherit;
}
button:hover {
    background: linear-gradient(to bottom, #ffaa00, #ff7700);
}
button:active {
    border-style: inset;
}
.error {
    color: #cc0000;
    margin: 10px 0;
    padding: 10px;
    background-color: #fff0f0;
    border: 1px solid #ffcccc;
    border-radius: 0;
}
.entries {
    margin-top: 40px;
}
.entry {
    background-color: #f0f8ff;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #99ccff;
    border-radius: 0;
}
.entry-header {
    font-weight: bold;
    color: #003366;
    margin-bottom: 5px;
    border-bottom: 1px dotted #99ccff;
    padding-bottom: 5px;
}
.entry-date {
    font-size: 11px;
    color: #666699;
    margin-left: 10px;
}
.entry-message {
    margin-top: 10px;
    line-height: 1.5;
    color: #333333;
}
.no-entries {
    text-align: center;
    color: #666699;
    font-style: italic;
    margin-top: 20px;
    padding: 20px;
    border: 1px dashed #99ccff;
}
.footer {
    text-align: center;
    margin-top: 30px;
    font-size: 12px;
    border-top: 1px dotted #99ccff;
    padding-top: 15px;
}
.construction-image {
    height: 20px;
    width: auto;
}
.construction-image-left {
    margin-right: 5px;
}
.construction-image-right {
    margin-left: 5px;
}
.construction-text {
    vertical-align: top;
}
a {
    color: #cda53f;
    text-decoration: underline;
}
a:hover {
    color: #ff6600;
}
.toggle-button-container {
    text-align: center;
    margin-bottom: 20px;
}
.toggle-button {
    background: linear-gradient(to bottom, #007cff, #0082ff);
    color: white;
    padding: 10px 20px;
    border: 2px outset #6699cc;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    font-family: inherit;
}
.toggle-button:hover {
    background: linear-gradient(to bottom, #fdda7f, #fdda7f);
}
.toggle-button:active {
    border-style: inset;
}
.close-button {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    color: #999999;
    cursor: pointer;
    line-height: 20px;
    width: 20px;
    height: 20px;
    text-align: center;
}
.close-button:hover {
    color: #cc0000;
}
/* Recreate the classic <blink> tag effect */
blink {
    animation: blinker 1s step-end infinite;
    font-weight: bold;
    color: #fdda7f;
}
@keyframes blinker {
    50% { opacity: 0; }
}
