.guestbook-wrapper {
    border: 1px solid #e5e5e5;
    padding: 15px;
    border-radius: 6px;
    background: #fff;
    max-width: 700px
}

.guestbook-form input[type="text"],
.guestbook-form textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 8px
}

.guestbook-form button {
    padding: 8px 14px;
    border: 0;
    background: #0073aa;
    color: #fff;
    border-radius: 4px;
    cursor: pointer
}

.guestbook-entry {
    border-top: 1px dashed #eee;
    padding: 10px 0
}

.guestbook-entry-meta {
    font-size: 0.95em;
    color: #333;
    margin-bottom: 6px
}

.guestbook-date {
    color: #888;
    font-size: 0.85em;
    margin-left: 8px
}

.guestbook-notice {
    padding: 8px;
    border: 1px solid #eee;
    background: #fafafa;
    margin-bottom: 10px
}

.guestbook-entries-list {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 8px;
}

/* Pagination Buttons */
.guestbook-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.guestbook-pagination button.guestbook-page {
    background-color: #0073aa; /* WordPress blue */
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 5px 12px; /* smaller size */
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.guestbook-pagination button.guestbook-page:hover {
    background-color: #005f8d;
}

.guestbook-pagination .guestbook-page-info {
    font-size: 13px;
    color: #555;
}
