html {
    filter: saturate(1.5)
}

body {
    font-family: "Inter", sans-serif;
    color: white;
    height: 100vh;
    overflow: hidden;
    background-color: #101316;
    overflow-y: auto;
}

h1 {
    font-size: 48px;
    font-weight: 600;
    color: white;
}

.bg-new {
    background-color: #1f2129 !important;
}

h2 {
    font-size: 34px;
    font-weight: 600;
    color: white;
}

h3 {
    font-size: 27px;
    font-weight: 600;
    color: white;
}

h4 {
    font-size: 22px;
    font-weight: 600;
    color: white;
}

h5 {
    font-size: 15px;
    font-weight: 600;
    color: white;
}

p {
    font-size: 17px;
    color: white;
}

a {
    text-decoration: none;
    color: white;
}

.textLink {
    color: hsl(14.4, 76.42%, 55.1%);
}

.dropdown-menu {
    background-color: #0b0d0f;
}

.sidebar {
    height: 100vh;
    background-color: #0b0d0f !important;
    transform: translateX(-100%);
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    transition: transform 0.3s ease-in-out;
    /* Smooth transition */
}

.sidebar.show {
    transform: translateX(0);
}

.sidebar.hide {
    transform: translateX(-100%);
}

.toggle-btn {
    display: block !important;
    transition: background-color 0.3s ease, transform 0.2s ease;
    padding: 10px 16px;
    font-size: 1.5rem;
    width: 60px;
    height: 60px;
}

.nav-pills .nav-link.active {
    background-color: white !important;
    color: black !important;
}

.nav-pills .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-pills .nav-link.active i {
    color: black !important;
}

.nav-pills .nav-link i {
    color: white;
}

.nav-pills .nav-link:hover i {
    color: white;
}

@media (max-width: 768px) {
    .sidebar {
        width: 4.5rem;
    }

    .toggle-btn {
        position: absolute;
        z-index: 1001;
        top: 10px;
        left: 10px;
    }

    .toggle-btn.hidden {
        display: none !important;
    }

    .hidden {
        display: none !important;
    }
}

/* DESKTOP */
@media (min-width: 769px) {
    .toggle-btn {
        display: none !important;
    }

    .sidebar {
        width: 4.5rem;
        transform: translateX(0);
    }
}

.main-content {
    padding: 3rem;
    transition: margin-left 0.3s ease-in-out;
}

@media (max-width: 768px) {
    .main-content {
        margin-left: 0rem;
    }

    .toggle-btn {
        display: block;
    }

    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .sidebar.show {
        transform: translateX(0);
    }


}

@media (min-width: 768px) {
    .sidebar.hide {
        transform: translateX(0);
    }

    .sidebar {
        transform: translateX(0);
    }

    .main-content {
        margin-left: 4.5rem;
    }
}