/* app/assets/stylesheets/base.css */
/* Global styles applicable to both layouts */

body {
    /* Prioritize Noto Sans based on original application.html.erb style */
    font-family: "Noto Sans", "Inter", "Lucida Grande", Verdana, sans-serif;
    min-height: 100vh;
    background-color: hsl(var(--b1));
    /*color: hsl(var(--bc));*/
    overflow-x: hidden; /* Apply globally */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.scrollbar-hide {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}
