.telegram-button {
    background-color: #38ACEC; /* لون تليجرام الأزرق */
    border-radius: 50%; /* جعل الزر دائري الزوايا */
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none; /* إزالة الخط السفلي للنص */
    width: 55px; /* عرض الزر */
    height: 55px; /* ارتفاع الزر */
    position:fixed;  /* لجعل الزر ثابتًا في مكانه */
    bottom: 23px; /* المسافة من أسفل الصفحة */
    left: 20px; /* المسافة من يمين الصفحة */
    transition: background-color 0.3s;
    z-index: 9999; /* لجعل الزر يظهر فوق كل المحتوى */
}

.telegram-button:hover {
    background-color: #006699; /* لون مختلف عند التمرير على الزر */
}

/* تنسيق أيقونة تليجرام */
.telegram-button .fa-telegram-plane {
    font-size: 30px;
    color: white; /* لون الأيقونة */