/*
Theme Name:   EduBlink Child
Theme URI:    https://demo.edublink.co/
Author:       DevsBlink
Author URI:   https://themeforest.net/user/devsblink/portfolio
Description:  EduBlink Child Theme For LMS and Education Purpose.
Version:      1.0.0
Template:     edublink
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain:  edublink-child
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

* If you are not familiar with Child Themes, you can read about it here:
* http://codex.wordpress.org/Child_Themes
*/

@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css');

/* إصلاح اتجاه الـ breadcrumb */
.edublink-breadcrumb ul.breadcrumb {
    display: flex;
    flex-direction: row-reverse; /* يخلي الترتيب من اليمين لليسار */
    direction: rtl;
}

.edublink-breadcrumb ul.breadcrumb li {
    margin: 0 5px;
}

.edublink-breadcrumb ul.breadcrumb li a,
.edublink-breadcrumb ul.breadcrumb li span {
    direction: rtl;
    unicode-bidi: bidi-override; /* يضمن ترتيب النص */
}

/* أيقونة تليجرام مثبتة أسفل يسار الشاشة */
.telegram-icon-bottom {
    position: fixed;
    bottom: 20px;                 /* المسافة من أسفل */
    left: 20px !important;        /* ثابت على اليسار */
    right: auto !important;       /* تعطيل اليمين */
    z-index: 99999;
    background-color: #0088cc;    /* لون أزرق تليجرام */
    border-radius: 50%;
    padding: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.2s ease;
}

.telegram-icon-bottom img {
    width: 32px;
    height: 32px;
    display: block;
}

.telegram-icon-bottom:hover {
    transform: scale(1.1);
}

/* ضبط بسيط للموبايل */
@media (max-width: 767.98px) {
    .telegram-icon-bottom {
        bottom: 16px;
        left: 16px !important;
        right: auto !important;
    }
}
