html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}
.dropdown-submenu {
    position: relative;
}

    .dropdown-submenu .submenu-list {
        display: none;
        position: absolute;
        top: 0;
        left: 100%;
        margin-top: -1px;
        min-width: 200px;
        z-index: 1050;
    }

    .dropdown-submenu.show .submenu-list {
        display: block;
        animation: slideIn 0.2s ease-in-out;
    }

@keyframes slideIn {
    from {
        transform: translateX(10px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive override for mobile */
@media (max-width: 767.98px) {
    .dropdown-submenu .submenu-list {
        position: relative;
        left: 0;
        top: 0;
        margin: 0;
    }
}
/* Reports menu: show flyout on desktop (lg+) */
/* Multi-level dropdown: open child to the right of parent */
/* Mobile-first: nested menus stack and open on tap */
.dropdown-menu .submenu {
    position: static; /* stacked under parent */
    left: 0;
    top: 0;
    margin: 0;
    display: none; /* hidden until JS toggles .show */
}

    .dropdown-menu .submenu.show {
        display: block;
    }

/* Desktop (lg+): open to the right on hover */
@media (min-width: 992px) {
    .dropdown-menu li {
        position: relative;
    }

    .dropdown-menu .submenu {
        position: absolute;
        left: 100%;
        top: 0;
        margin-left: .25rem;
        display: none;
    }

    .dropdown-menu > li:hover > .submenu {
        display: block;
    }
}

/* tap target */
.dropdown-item {
    padding-top: .6rem;
    padding-bottom: .6rem;
}
/* ===== Form Labels & Inputs (mobile-first) ===== */
.form-label {
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.3;
}

.form-control,
.form-select {
    font-size: 1rem;
    min-height: 44px;
    padding: .55rem .75rem;
}

/* Scale up on larger screens */
@media (min-width: 768px) {
    .form-label {
        font-size: 1.125rem;
    }
}

@media (min-width: 992px) {
    .form-label {
        font-size: 1.15rem;
    }
}
@keyframes ss-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .ss-spinner {
        animation: none;
    }
}









