/* Custom select dropdown styling */
.select-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
}

.custom-select-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #005072;
    background: white;
    cursor: pointer;
	padding-left:10px;
}

.custom-select-menu span {
    flex-grow: 1;
}

.hamburger-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: #efefef url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"%3E%3Cpath fill="%23005072" d="M2 4h16v2H2zM2 9h16v2H2zM2 14h16v2H2z"/%3E%3C/svg%3E') no-repeat center;
    background-size: 1rem;
}

.custom-select-options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    border: 1px solid #005072;
    background: white;
    z-index: 10;
}

.custom-select-options .custom-option {
    padding: 0.3rem;
    cursor: pointer;
}

.custom-select-options .custom-option:hover {
    background-color: #f0f0f0;
}

/* Indentation classes for different levels */
.level-0 {
    padding-left: 0rem;
    font-weight: bold;
    font-size: 18px;
}

.level-1 {
    padding-left: 1rem;
    font-style: italic;
    font-size: 14px;
}

.level-2 {
    padding-left: 2rem;
    color: #555;
    font-size: 14px;
}

.level-3 {
    padding-left: 3rem;
    color: #555;
    font-size: 14px;
}

/* Highlight the current page */
.current-page {
    background-color: #20b9df;
    color: white;
}
