.frm-skeleton {
    position: relative;
    background-color: #e2e2e2;
    border-radius: 4px;
    overflow: hidden;

    color: transparent !important;
    text-shadow: none !important;
    pointer-events: none;
    user-select: none;
}

.frm-skeleton::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    height: 100%;
    width: 150%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 1.2s infinite;
}

.offcanvas .offcanvas-body::-webkit-scrollbar {
    width: 4px;
}

.offcanvas .offcanvas-body::-webkit-scrollbar-track {
    background: transparent;
}

.offcanvas .offcanvas-body::-webkit-scrollbar-thumb {
    background: rgba(20, 20, 20, 0.3);
    border-radius: 999px;
    transition: background 0.2s ease, width 0.2s ease;
}

.offcanvas .offcanvas-body::-webkit-scrollbar-thumb:hover {
    background: rgba(20, 20, 20, 0.5);
}

.offcanvas .offcanvas-header button:hover,
.offcanvas .offcanvas-header button:focus,
.offcanvas .offcanvas-header button:active,
.offcanvas .offcanvas-header button:visited {
    outline: none !important;
    box-shadow: none !important;
}

#notification-anchor {
    position: fixed;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
}

body[data-style-mode="dark"] .offcanvas .offcanvas-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.25);
}

body[data-style-mode="dark"] .offcanvas .offcanvas-body::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.45);
}

@keyframes shimmer {
    100% {
        left: 100%;
    }
}