/* Navbar Customization */
.navbar-custom {
    background-color: #f8f9fa;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
/* Navbar Customization */
.navbar-custom .navbar-link {
    color: #2e3b4e !important;
    transition: color 0.3s ease;
}

.navbar-custom .navbar-link:hover {
    color: #ba0202 !important;
}

.bi-search {
    cursor: pointer;
}
.navbar-collapse {
        flex-grow: 1;
    }
.navbar-custom .form-control{
    border-radius: 10px;
    border: 2px solid #2e3b4e;
}
.navbar-custom .form-control:focus {
    border-color: rgba(244, 206, 2, 0.89);
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.71);
}

@media (max-width: 768px) {
        .navbar-nav {
            text-align: center;
        }

        .navbar-toggler {
            margin-left: auto;
        }

         .nav-item {
            padding: 10px 0;
            font-size: 10px
        }

    }
@media (max-width: 768px) {
    .navbar-nav {
            display: flex;
            flex-direction: column; /* آیتم‌ها به صورت ستاک شده نمایش داده شوند */
            align-items: center;
            padding-left: 0; /* حذف فاصله از سمت چپ */
        }

        .navbar-toggler {
            margin-left: auto; /* دکمه همبرگر در سمت راست نمایش داده شود */
        }

         .nav-item {
            padding: 10px 0; /* فضای بین آیتم‌ها در حالت موبایل */
            width: 100%; /* آیتم‌ها به طور کامل از عرض منو استفاده کنند */
            text-align: center; /* متن آیتم‌ها در وسط قرار گیرد */
        }

         .nav-link {
            display: block; /* لینک‌ها به صورت بلوک نمایش داده شوند */
        }
    }

    /* برای حالت دسکتاپ */
    @media (min-width: 769px) {
       .navbar-custom .navbar-nav {
            display: flex;
            flex-direction: row; /* آیتم‌ها در کنار هم قرار گیرند */
        }

       .navbar-custom .nav-item {
            padding: 0 15px; /* فضای افقی بین آیتم‌ها */
        }
    }




/******/
.breadcrumb-custom{
    background-color: #2e3b4e;
    height: 30px;
}
.breadcrumb-custom .breadcrumb{
    font-size: 14px;
    padding-top: 1px;
    padding-bottom: 1px;
    line-height: 1;

}

.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
        content: ""; /* Set the separator to > */
        color: #ffffff;
    }

.breadcrumb .breadcrumb-item a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb .breadcrumb-item a:hover {
    color: #f4ce02;
}
