/* ,,,,,,,,,,,,,, */



/* Styling for the user initials circle */
.user-circle {
    width: 40px;
    height: 40px;
    /* background-color: #148fcd;  */
    background-color: #d87615; /* Background color */
    color: white;
    font-weight: bold;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    text-transform: uppercase; /* Make initials uppercase */
    position: relative;
}
.user-circle-small{
    width: 40px;
    height: 40px;
    margin-right: 5px;
    /* background-color: #148fcd;  */
    background-color: #15d84c; /* Background color */
    color: white;
    font-weight: bold;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    text-transform: uppercase; /* Make initials uppercase */
    position: relative;
}

/* Positioning the dropdown menu */
.sub-menu-warp {
    position: absolute;
    top: 100%;
    right: 0;
    width: 250px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease;
    opacity: 0;
    visibility: hidden;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.sub-menu-warp.open-menu {
    max-height: 400px;
    opacity: 1;
    visibility: visible;
}

/* Display the dropdown on hover */
.user-circle:hover + .sub-menu-warp,
.sub-menu-warp:hover {
    max-height: 400px;
    opacity: 1;
    visibility: visible;
}

.sub-menu {
    padding: 20px;
}

.sub-menu hr {
    border: 0;
    height: 1px;
    background: #ccc;
    margin: 15px 0;
}

.sub-menu-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #148fcd;
    margin: 12px 0;
}

.sub-menu-link p {
    flex: 1;
}

.sub-menu-link span {
    font-size: 20px;
    transition: transform 0.5s;
}

.sub-menu-link:hover span {
    transform: translateX(5px);
}

.sub-menu-link:hover p {
    font-weight: 600;
}


/* ,,,,,,,,,,,,,, */



/* user inof box */
.sub-menu-warp{
    position: absolute;
    top: 100%;
    right: 10%;
    width: 320px;
    max-height: 400px;
    overflow: hidden;
    transition: max-height 0.5s;
}
.sub-menu-warp.open-menu{
    max-height: 400px;

}

.sub-menu{
    background-color: white;
    padding: 20px;
    margin: 10px;
}
.uer-info{
    display: flex;
    align-items: center;

}
.uer-info h3{
    font-weight: 500;
    text-transform: capitalize;
    margin-left: 5px;

}
.uer-info img{
    width: 60px;
    border-radius: 50%;
    margin-right: 15px;

}
.nav__actions img{
    width: 60px;
    border-radius: 50%;
    /* margin-right: 15px; */
}
.sub-menu hr{
 border: 0;
 height: 1px;
 width: 100%;
 background: #ccc;
 margin: 15px 0 10px;

}
.sub-menu-link{
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #148fcd;
    margin: 12px 0 ;
}
.sub-menu p{
    width: 100%;
}
.sub-menu-link i{
    width: 32px;
    background: #e5e5e5;
    border-radius: 50%;
    padding: 8px;
    margin-right: 15px;
}

.sub-menu-link span{
    font-size: 22px;
    transition: transform 0.5s;
}

.sub-menu-link:hover span{
    transform: translateX(5px);

}
.sub-menu-link:hover p{
    font-weight: 600;

}
/* user inof box end */





/* Styling for the user initials circle */


/* Positioning the dropdown menu */
.sub-menu-warp {
    position: absolute;
    top: 100%;
    right: 10%;
    width: 320px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    opacity: 0;
    visibility: hidden;
}

.sub-menu-warp.open-menu {
    max-height: 400px;
    opacity: 1;
    visibility: visible;
}

/* Display the dropdown on hover */
.user-circle:hover + .sub-menu-warp,
.sub-menu-warp:hover {
    max-height: 400px;
    opacity: 1;
    visibility: visible;
}

/* Add more styles for the dropdown menu */
.sub-menu {
    background-color: white;
    padding: 20px;
    margin: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
