.user-box {
    position: relative;
    margin-right: 15px;
    z-index: 999;
}
.user-box img {
    height: auto;
    width: 2.1rem;
}
.user-dropdown {
    position: absolute;
    right: 0;
    width: 240px;
    background: #fff;
    box-shadow: 0 0 10px #ddd;
    border-radius: 5px;
    top: 35px;
    display: none;
}
.user-dropdown ul {
    list-style: none;
    margin: 0;
    padding: 10px;
    position: relative;
}

.user-dropdown ul:before {
    position: absolute;
    width: 30px;
    height: 30px;
    background: #ffffff;
    top: -5px;
    right: 11px;
    z-index: -1;
    content: "";
    transform: rotate(45deg);
    box-shadow: 0 0 10px #ddd;
}
.user-box:hover .user-dropdown  {
display: block;
}

/*  welcome to dashboard css */
.MarqueeMessage {
    width: 100%;
    background: linear-gradient(90deg, #0d6efd, #0a58ca);
    border-radius: 8px;
    overflow: hidden;
    padding: 12px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.marquee {
    white-space: nowrap;
    display: inline-block;
    animation: marqueeMove 6s linear infinite;
}

    .marquee span {
        display: inline-block;
        font-size: 32px;
        font-weight: bold;
        color: white;
        text-transform: uppercase;
        letter-spacing: 1px;
        padding-left: 100%;
    }

@keyframes marqueeMove {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}