a {
    color: inherit;
    text-decoration: none;
}

#navigation {
    background-color: #FEBF00;
    padding: 0 4rem;
}
#admin_navigation {
    position: relative;
    background-color: #FEBF00;
    padding: 0 2rem;
    left: 20%;
    width: 80%;
}
.navbar-brand {
    color: #082F40;
}
.navbar-brand:hover {
    color: #000;
}
.nav-link {
    color: #082F40;
}
.nav-link:hover {
    color: #000;
}
#logo {
    width: 90px;
}

.button {
    background-color: #082F40;
    color: #F5F5F5;
    display: inline-block;
    font-weight: 400;
    text-align: center;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.button:hover {
    background-color: #FEBF00;
    color: #000;
}
.button-nohover:hover {
    background-color: #082F40;
    color: #F5F5F5;
}
.button.secondary {
    background-color: #FEBF00;
    color: #000;
}
.button.secondary:hover {
    background-color: #082F40;
    color: #F5F5F5;
}

footer {
    background-color: #D9D9D9;
    padding: 4rem 6rem 2rem 6rem;
}
.footer-logo {
    height: 70px;
    width: 140px;
    background-color: #082F40;
}
.footer-telephone {
    font-size: 22px;
    font-weight: bold;
}
.footer-links {
    padding-left: 8rem;
}
.icon {
    margin-right:1rem;
    font-size:24px;
}
.facebook:hover {
    color: #4267B2
}
.instagram:hover {
    color: #E1306C
}
.twitter:hover {
    color: #1DA1F2
}
.qr-code-image {
    position: absolute;
    bottom: 4px;
    right: 10px;
    width: 100px;
}

.link {
    color: #0461ED;
    text-decoration: underline;
}

/* Sidebar */
#sidebar-container {
    position: fixed;
    overflow-y: scroll;
    top: 2.5rem;
    left: 0px;
    bottom: 0px;
    top: 0px;
    height: 100vh;
    width: 20%;
    background-color: #082F40;
    color: #fff;
    padding: 1rem 0 0 0;
}
.sidebar-item {
    line-height: 1.5;
    padding: 1rem 1rem 1rem 3rem;
    list-style-type: none;
}
.sidebar-item:hover {
    background-color: #FEBF00;
}
.sidebar-link {
    font-size: 21px;
}

.dashboard-container {
    position: relative;
    left: 20%;
    width: 80%;
}

/* `md` applies to small devices (tablets, less than 992px) */
@media (max-width: 991.98px) {

    #sidebar-container {
        width: 25%;
    } 
    .dashboard-container {
        left: 25%;
        width: 75%;
    }
    footer {
        padding: 2rem 3rem 1rem 3rem;
    }
    .footer-links {
        padding-left: 4rem;
    }
}

/* `sm` applies to x-small devices (portrait phones, less than 576px) */
@media (max-width: 767.98px) {
    
    #sidebar-container {
        display: none;
        width: 75%;
    }
    .dashboard-container {
        left: 0;
        width: 100%;
    }
    #navigation {
        padding: 0 1rem;
    }
    #admin_navigation {
        padding: 0 1rem;
        left: 0;
        width: 100%;
    }
    footer {
        padding: 2rem 1rem;
    }
    .footer-links {  
        padding-right: calc(var(--bs-gutter-x) * .5);
        padding-left: calc(var(--bs-gutter-x) * .5);
    }

}