.mimoza-contact-buttons {
    position: fixed;
    bottom: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.mimoza-contact-buttons.right {
    right: 20px;
}

.mimoza-contact-buttons.left {
    left: 20px;
}

.mimoza-contact-buttons.center {
    left: 50%;
    transform: translateX(-50%);
}

.mimoza-contact-buttons .contact-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    font-size: 16px;
    border-radius: 50px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

/* Butona hover efekti (renk değişimi ve büyüme efekti) */
.mimoza-contact-buttons .contact-button:hover {
    background-color: #0056b3;
    transform: scale(1.1); /* Hover ile büyüme */
}

/* Bounce effect (zıplama efekti) */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-7px);
    }
}

.mimoza-contact-buttons .contact-button {
    animation: bounce 2s infinite;
}

/* Avatar görünümü */
.mimoza-contact-buttons img {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-bottom: 10px;
}
