a {
    color: #1EAEDB; 
    text-decoration: underline;
    cursor: pointer;}
  a:hover {
    color: #0FA0CE; }


.info {
    padding: 6px 8px;
    font: 14px/16px Arial, Helvetica, sans-serif;
    background: white;
    background: rgba(255,255,255,0.8);
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    border-radius: 5px;
}

.info h4 {
    margin: 0 0 5px;
    color: #777;
}

/* This creates a skinny side bar fixed to the left of the page */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 5rem;
    padding: 2rem 1rem;
    background-color: #1f2937;
    z-index: 1050;
    transition: width 0.3s ease-in-out;
}

/* when the user hovers on the sidebar, expand it */
.sidebar:hover {
    width: 16rem;
}
/* 
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: #afdaff;
    background-color: #3e4448;
    background-image: var(--bs-gradient);
} */

/* make sure the contents of the navlink don't wrap when navbar collapses */
.sidebar .nav-link {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

/* fix the width of the icons */
.sidebar .nav-link i {
    width: 1rem;
}

.nav-link:focus, .nav-link:hover {
    color: #b1edff;
    background: #8f8f9d54;
}
.nav-link {
    color: white;
}
.nav-pills {
    --bs-nav-pills-border-radius: 0.375rem;
    --bs-nav-pills-link-active-color: #ffffff;
    --bs-nav-pills-link-active-bg: #007bda;
}

/* hide the navlink labels by default */
.sidebar .nav-link span {
    visibility: hidden;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

/* when the sidebar is hovered, reveal the labels */
.sidebar:hover .nav-link span {
    visibility: visible;
    opacity: 1;
    color: white;
    
}

/* container for the sidebar header. make sure the contents don't wrap when
 * the sidebar is collapsed.
 */
.sidebar-header {
    display: none;
}

#hr-sidebar {
    display: none;
}

.sidebar:hover #hr-sidebar {
    display: block;
}

.sidebar:hover .sidebar-header h3 {
    display: flex;
    color:white;
    justify-content: left;
    align-items: center;
    overflow: unset;
    white-space: break-spaces;
    text-align: center;
}

.sidebar:hover .sidebar-header {
    display: grid;
    justify-content: left;
    align-items: center;
    overflow: unset;
    white-space: break-spaces;
    text-align: center;
}

#navbar-logo-col{
    display: none;
}

.sidebar:hover #navbar-logo-col {
    display: flex;
    justify-content: center;
    margin-bottom:16px;
}

/* position the header relative to the logo and hide by default */
.sidebar-header h3 {
    opacity: 0;
    margin-left: 0;
    margin-bottom: 0;
    transition: opacity 0.3s ease-in-out;
}

/* reveal the header when the sidebar is toggled */
.sidebar:hover .sidebar-header h3 {
    opacity: 1;
}

/* position the content relative to the collapsed sidebar */
.content {
    margin-left: 6rem;
    margin-right: 1rem;
    padding: 2rem 1rem;

}

.linkCenterSidebar {
    padding: 8px 12px;
    align-items: center;
}
