#chat-icons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}

body.rtl #chat-icons {
    right: auto;
    left: 20px;
}

.chat-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
    color: white;
}

.chat-btn:hover {
    transform: scale(1.1);
}

.phone {
    background-color: #007cba;
}

.whatsapp {
    background-color: #25D366;
}

.chat-btn svg {
    width: 24px;
    height: 24px;
	fill:#fff
}