.guacamaya-container {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 150px;
    text-align: center;
    z-index: 1000;
    max-height: calc(100vh - 100px);
    overflow: hidden;
}

.guacamaya {
    width: 100%;
    height: auto;
}

.guacamaya-message {
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    margin-top: 10px;
    position: relative;
}

.close-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background: transparent;
    border: none;
    color: #ff0000;
    font-size: 18px;
    cursor: pointer;
}

.donate-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #32c514dc;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
    transition: background-color 0.3s;
}

.donate-button:hover {
    background-color: #28a10b;
}

@media (max-width: 768px) {
    .guacamaya-message {
        padding: 5px;
    }

    .close-btn {
        font-size: 16px;
    }
}
