.flatpickr-input {
width: 30%;
}
#navmenulist ul li a.current.disabled {
background-color: inherit;
border-left: 5px solid #e6e6e6;
color: #000;
#navmenulist ul li a.disabled {
color: #666;
pointer-events: none;
font-weight: 700;
#navmenulist ul li a.disabled.router-link-active {
</style>
const router = createRouter({
history: createWebHistory(),
linkExactActiveClass: "current",
linkActiveClass: "current",
routes,
});
-