/* Tailwind custom configuration */
script {
    display: none;
}

/* Custom UI Tweaks */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #ffffff;
}

::-webkit-scrollbar-thumb {
    background: #0ea5e9;
    border-radius: 99px;
}

.page-view {
    display: none;
    opacity: 0;
    transition: opacity 0.25s ease-in-out;
}

.page-view.active {
    display: block;
    opacity: 1;
}

.nav-link.active-link {
    color: #0ea5e9;
    border-bottom: 2px solid #0ea5e9;
    font-weight: 700;
}