.breadcrumb-area {
    padding: 6px 0;
}

/* container */
.breadcrumb-con {
    display: flex;
    justify-content: center;
}

/* breadcrumb pill */
.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: linear-gradient(145deg, #ffffff, #f3f6f9);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* breadcrumb items */
.breadcrumb-item {
    color: #6b7280; /* modern gray */
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

/* links */
.breadcrumb-item a {
    color: #0470af;
    text-decoration: none;
    font-weight: 700;
    position: relative;
    padding: 4px 6px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

/* hover background + lift */
.breadcrumb-item a:hover {
    /* background-color: rgba(4, 112, 175, 0.1); */
    transform: translateY(-1px);
}

/* animated underline */
.breadcrumb-item a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 2px;
    width: 0;
    height: 2px;
    background-color: #0470af;
    transform: translateX(-50%);
    transition: width 0.25s ease;
}

.breadcrumb-item a:hover::after {
    width: 70%;
}

/* separator */
.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    /* margin: 0 10px; */
    /* font-size: 18px; */
    color: #c4c4c4;
}

/* active page */
.breadcrumb-item.active {
    color: #111827;
    font-weight: 800;
    padding: 4px 10px;
    background: #e8f2fb;
    border-radius: 14px;
}

/* optional subtle animation */
.breadcrumb {
    animation: fadeSlide 0.4s ease forwards;
}

.breadcrumb-area .breadcrumb {
    margin-bottom: 0;
}


@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.main-wrapper .main-wrapper-con .main-area-con::before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: black;
    /* opacity: 25% !important; */
}

.main-wrapper {
    min-height: 0vh !important;
}

.profile-avatar {
    padding-left: 20px;
}

.main-profile-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #f0f0f0;
    display: inline-block;
    background-image: url('../../images/user_1077012.png');
    /* Replace with your profile icon URL */
    background-size: cover;
    background-position: center;
}