#bubble-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.bubble {
    display: flex;
    align-items: center;
    background: rgba(50, 50, 50, 0.9);
    color: white;
    padding: 12px 15px;
    border-radius: 12px;
    font-size: 14px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease-in-out;
    opacity: 1;
    transform: translateX(0);
    max-width: 280px;
    animation: slideIn 0.5s ease-in-out;
}

.bubble-icon {
    background: #ff6f61;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
}

.bubble strong {
    font-weight: 600;
}

.bubble em {
    font-style: italic;
    color: #ff6f61;
}

/* Animasyonlar */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-out {
    opacity: 0;
    transform: translateX(30px);
    transition: all 1s ease-in-out;
}