/*
navigation bar css
*/

#maintenanceContent {
    display: flex;
    max-width: 99.2%;
    margin-left: 5px;
    margin-right: 5px;
    margin-bottom: 5px;
}

/* Header Subtitle Styles */
.header-subtitle {
    display: flex;
    align-items: center;
    height: 100%;
    margin-left: 35px;
    color: #f4f4f4 !important;
    white-space: nowrap;
    cursor: pointer;
    padding: 0 8px 0 0;
    font-weight: 280;
}

/* Hamburger Menu Styles */
#hamburger-menu-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f4f4f4;
    transition: background-color 0.11s cubic-bezier(0.2, 0, 0.38, 0.9);
}

#hamburger-menu-btn:hover {
    background-color: #353535;
}

#hamburger-menu-btn.cds--header__action--active {
    border: 2px solid #f4f4f4;
    border-bottom: none;
}

.hamburger-side-panel {
    position: fixed;
    top: 3rem;
    left: -300px;
    width: 300px;
    height: calc(100vh - 3rem);
    background-color: #161616;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.3);
    transition: left 0.3s cubic-bezier(0.2, 0, 0.38, 0.9);
    z-index: 8000;
    overflow-y: auto;
}

.hamburger-side-panel.active {
    left: 0;
}

.side-panel-links {
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
}

.registry-link-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    color: #f4f4f4 !important;
    text-decoration: none;
    transition: background-color 0.11s cubic-bezier(0.2, 0, 0.38, 0.9);
    font-size: 0.875rem;
    border: 2px solid transparent;
    background: transparent;
    cursor: pointer;
    font-weight: 500;
    outline: none;
}

.registry-link-button:hover {
    background-color: #353535;
    color: #f4f4f4 !important;
    text-decoration: none;
}

.registry-link-button:active,
.registry-link-button:focus {
    border: 2px solid #f4f4f4;
    background-color: #353535;
    outline: none;
}

.registry-link-button:visited {
    color: #f4f4f4 !important;
}

.registry-link-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
