/* guestbook widget styles*/
.guestbook-widget {
    font-family: Arial, sans-serif;
    max-width: 600px;
    margin: 0 auto;
}

.guestbook-box {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 0px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.box-header {
    background: #e6e6e6;
    padding: 8px 12px;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 0px 0px 0 0;
}

.box-title {
    font-weight: bold;
    color: #333;
}

.guestbook-content {
    position: relative;
    min-height: 300px;
    border-radius: 0 0 0px 0px;
    overflow: hidden;
}

.guestbook-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: opacity 0.5s ease;
}

.guestbook-loading {
    font-size: 16px;
    color: #666;
    font-style: italic;
}

#guestbookIframe {
    border: none;
    background: white;
}

#characterCanvas {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 5;
}