
.page-header {
    padding: 20px 0;
    background-color: #f4f4f4; /* Light background color */
    border-bottom: 1px solid #ddd;
    text-align: center;
    background: #e5e7ed;
}
@media (max-width: 991.98px) {
    /* For md screen sizes */
    .page-header {
        padding-top: 40px; /* Increase top padding for medium screens */
    }
}

.container-breadcrumb {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    
}

.breadcrumb {

    display: inline-flex;
    text-align: center; /* Center the breadcrumb content vertically */
    font-size: 16px;
    color: #555;
    margin: 0 auto; /* Center horizontally */
}

.breadcrumb a {
    color: #007bff; /* Link color */
    text-decoration: none;
    font-weight: 600;
    display: inline-flex; /* Keep icon and text aligned together */
    align-items: center; /* Vertically center the icon and text */
    transition: color 0.3s ease;
}

.breadcrumb a i {
    margin-right: 5px; /* Space between icon and text */
}

.breadcrumb-separator {
    margin: 0 10px;
    color: #999; /* Separator color */
}

.breadcrumb-current {
    color: #1c2b45;
    font-weight: 400;
}


