@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: "Roboto", sans-serif;
}

li{
    list-style: none;
}

a {
    text-decoration: none;
}

.main {
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    background-color: #f9f9f9;
}

#sidebar {
    z-index: 999;
    max-width: 300px;
    min-width: 300px;
    transition: all 0.35s ease-in-out;
    background-color: black;
    display: flex;
    flex-direction: column;
}

#sidebar.collapsed {
    margin-left: -300px;
}

.toggle-btn {
    background: transparent;
    cursor: pointer;
    border: 0;
}

.toggle-btn i {
    font-size: 1.5rem;
    color: black;
    font-weight: bold;
}

.navbar {
    padding: 1.15rem 1.5rem;
}

.sidebar-nav{
    flex: 1 1 auto;
}

.sidebar-logo {
    padding: 1.15rem 1.5rem;
    text-align: center;
}

.sidebar-logo a {
    color: white;
    font-weight: 800;
    font-size: 1.25rem;
}

.sidebar-logo span {
    color: rgb(128, 116, 116);
    font-weight: 800;
}

.sidebar-header {
    color: white;
    padding: 1.5rem 1.5rem .375rem;
    font-size: 1.5rem;
}

a.sidebar-link{
    padding: 1.25rem 1.625rem;
    color: white;
    position: relative;
    transition: all 0.2s;
    display: block;
    font-size: 1.15rem;
}

span.button-span
{
    font-weight: 300;
    font-size: 1.5rem;
}


@media (max-width: 768px) {
    #sidebar {
        margin-left: -300px;
        position: fixed;
        height: 100%;
        box-shadow: 2px 0px 5px rgba(0, 0, 0, 0.5);
    }

    #sidebar.collapsed {
        margin-left: 0;
    }

    .toggle-btn {
        position: fixed;
        top: 1rem;
        left: 1rem;
        z-index: 1000;
        background-color: white;
        border-radius: 5px;
        padding: 0.5rem;
        box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
    }
}