.avatar.avatar-lg {
    width: 1.813rem;
    height: 1.813rem;
    line-height: 2.813rem;
    font-size: 1rem;
}

.header .header-user .user-menu {
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    justify-content: center;
    -webkit-justify-content: end;
    -ms-flex-pack: center;
    margin: 0;
    position: relative;
    height: 100%;
    border-bottom: 0;
    padding: 0 24px;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.notification-status-dot {
    width: 150px;
    height: 25px;
    background: #f37a36;
    color: white;
    border-radius: 4%;
    position: absolute;
    line-height: 26px;
    right: 2px;
    top: 3px;
    z-index: 1;
}

.notification-status-dot:before {
    display: none;
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation: pulsate1 2s;
    animation: pulsate1 2s;
    -webkit-animation-direction: forwards;
    animation-direction: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: steps;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid #F6CECE;
    top: -4px;
    left: -4px;
    background: #E36D6D;
    z-index: -1;
}

.sidebar .sidebar-logo {
    position: fixed;
    height: 50px;
    width: 140px;
    padding: 16px 16px 0;
}

.imp-links-ticker {
    width: 100%;
    background: #1f4e79;
    color: #fff;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.imp-links-title {
    white-space: nowrap;
    font-weight: 700;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    margin-left: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.imp-links-marquee {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.imp-link-item::after {
    content: "|";
    margin-left: 15px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.imp-link-item:last-child::after {
    content: "";
    margin: 0;
}

.imp-links-track {
    display: flex;
    align-items: center;
    gap: 50px;
    width: max-content;
    animation: impLinksScroll 18s linear infinite;
    will-change: transform;
}

.imp-link-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 600;
}

.imp-link-name {
    color: #fff;
}

.imp-link-btn {
    background: #fff;
    color: #1f4e79;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 13px;
    transition: 0.2s ease;
}

.imp-link-btn:hover {
    background: #ffc107;
    color: #000;
}

/* ✅ Animation (Right -> Left) */
@keyframes impLinksScroll {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ✅ Hover pe pause */
.imp-links-marquee:hover .imp-links-track {
    animation-play-state: paused;
}

/* ✅ Mobile Responsive */
@media (max-width: 576px) {
    .imp-links-title {
        font-size: 12px;
        padding: 6px 10px;
    }

    .imp-link-item {
        font-size: 13px;
    }

    .imp-link-btn {
        padding: 4px 10px;
        font-size: 12px;
    }
}