/* منع التمدد الأفقي من الجذر */


/* البار السفلي */
.bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 70px;
    background-color: #ffffff;
    display: none;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 10px;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    box-sizing: border-box;
  
}

/* إظهار البار على الموبايل فقط */
@media (max-width: 768px) {
    .bottom-bar {
        display: flex !important;
    }
}

/* تقسيم الأعمدة */
.bar-section {
    display: flex;
    align-items: center;
    gap: 22px;
}

.bar-section.left,
.bar-section.right {
    flex: 1;
    justify-content: space-evenly;
}

.bar-section.center {
    flex: 0 0 80px;
    justify-content: center;
    align-items: center;
    position: relative;
    top: -10px; /* خففنا الرفع لتجنب التمدد */
    z-index: 10;
}

/* الشعار داخل دائرة */
.bar-section.center .logo {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    border: 4px solid #ffffff;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
}

.bar-section.center .logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    image-rendering: auto;
    display: block;
}

/* أيقونات */
.icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 12px;
    max-width: 60px;
    /*overflow: hidden;*/
    flex-shrink: 0;
}

.icon a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 4px;
    max-width: 60px;
    text-decoration: none;
}

.icon svg {
    width: 26px;
    height: 26px;
    fill: #1aa3d9;
    margin-bottom: 4px;
    transition: fill 0.3s ease;
    display: block;
}

.icon:hover svg {
    fill: #054789;
}

.icon span {
    color: #333;
    font-size: 12px;
}
