
#sereth-toggle-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 64px;
    height: 64px;
    background-image: url('https://allchurchy.com/wp-content/uploads/2025/07/stars.gif');
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    padding: 8px;
    cursor: pointer;
    z-index: 10000;
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
}
#sereth-toggle-button img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
#sereth-chat-container {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 350px;
    background: #111;
    color: #eee;
    font-family: 'Georgia', serif;
    border: 1px solid #444;
    border-radius: 12px;
    overflow: hidden;
    z-index: 9999;
}
#sereth-header {
    background: #222;
    padding: 10px;
    display: flex;
    align-items: center;
}
#sereth-portrait {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-right: 10px;
}
#sereth-greeting {
    font-size: 14px;
}
#sereth-chatbox {
    padding: 10px;
}
#sereth-messages {
    max-height: 240px;
    overflow-y: auto;
    font-size: 14px;
    margin-bottom: 8px;
}
#sereth-input {
    width: 100%;
    padding: 8px;
    border: none;
    border-radius: 6px;
}
#sereth-messages .sereth-message {
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* subtle line */
}
