.avatar-bubble-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: flex-end;
    z-index: 1000;
}

.avatar-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    border: 2px solid #333;
}

.speech-bubble {
    background-color: #fff;
    color: #333;
    padding: 14px 18px;
    border-radius: 16px;
    max-width: 240px;
    font-size: 0.9rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    position: relative;
    border: 2px solid #000;
    transition: all 0.3s ease;
}

.speech-bubble::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 30px;
    border-width: 12px;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
}

.options {
    margin-top: 10px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.speech-bubble button {
    background-color: #5cb;
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    cursor: pointer;
}

.speech-bubble button:hover {
    background-color: #2196f3;
}

.no-btn {
    background-color: #2196f3;
}

.no-btn:hover {
    background-color: #2196f3;
}

body.dark-mode .speech-bubble, body.dark-mode .speech-bubble button {
    background-color: rgba(0, 0, 0, 0.2);
    border: 2px solid #eee;
    color: #eee;
}

body.dark-mode .avatar-img {
    border: 2px solid #eee;
}