﻿/*html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}



*/


@media (min-width: 768px) {
    .navbar-brand.abs {
        position: absolute;
        width: auto;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
    }
}



body {
    margin: 0 0 55px 0;
}

.nav__bottom {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 75px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    background-color: #ffffff;
    display: flex;
    overflow-x: auto;
    /*padding-bottom:10px;*/
    z-index:0;
}

.nav__top {
    width: 100%;
    height: 55px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    background-color: #ffffff;
    display: flex;
    overflow-x: auto;
}

.nav__link {
    top:-2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    min-width: 55px;
    overflow: visible;
    white-space: nowrap;
    font-family: sans-serif;
    /*font-size: 13px;*/
    color: #666666;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    transition: background-color 0.1s ease-in-out;
}
    .nav__text {
        font-size: 13px;
    }

.nav__link:hover {
    background-color: #eeeeee;
}

.nav__link--active {
    color: #009578;
}

.nav__icon {
    font-size: 25px;
}



/* -------------------------------------------------
   Tailwind‑compatible scrollbar utilities
   ------------------------------------------------- */

/* Base class that enables custom styling */
.scrollbar-thin {
    /* Firefox */
    scrollbar-width: thin;
    scrollbar-color: #4b5563 #1f2937;
}

    /* WebKit (Chrome, Edge, Safari) */
    .scrollbar-thin::-webkit-scrollbar {
        width: 8px; /* height for horizontal scrollbars */
        height: 8px;
    }

    .scrollbar-thin::-webkit-scrollbar-track {
        background: #1f2937;
        border-radius: 4px;
    }

    .scrollbar-thin::-webkit-scrollbar-thumb {
        background-color: #4b5563;
        border-radius: 4px;
        border: 2px solid #1f2937; /* creates a small padding */
    }


.scrollbar-light {
    /* Firefox */
    scrollbar-width: thin;
    scrollbar-color: #cbd5e0 #ffffff;
}

    /* WebKit (Chrome, Edge, Safari) */
    .scrollbar-light::-webkit-scrollbar {
        width: 8px; /* height for horizontal scrollbars */
        height: 8px;
    }

    .scrollbar-light::-webkit-scrollbar-track {
        background: #ffffff;
        border-radius: 4px;
    }

    .scrollbar-light::-webkit-scrollbar-thumb {
        background-color: #cbd5e0;
        border-radius: 4px;
        border: 2px solid #ffffff; /* creates a small padding */
    }


.dark .scrollbar-light {
    /* Firefox */
    scrollbar-width: thin;
    scrollbar-color: #4b5563 #1f2937;
}

/* WebKit (Chrome, Edge, Safari) */
.dark .scrollbar-light::-webkit-scrollbar {
    width: 8px; /* height for horizontal scrollbars */
    height: 8px;
}

.dark .scrollbar-light::-webkit-scrollbar-track {
    background: #1f2937;
    border-radius: 4px;
}

.dark .scrollbar-light::-webkit-scrollbar-thumb {
    background-color: #4b5563;
    border-radius: 4px;
    border: 2px solid #1f2937; /* creates a small padding */
}


