#PopupMenu {
    display: flex;
    flex-direction: column;
    height: 80vh;
    margin-top: 60%;
    visibility: hidden;
    opacity: 0;
    transition: 0.5s cubic-bezier(0, 0, 0.13, 1.2);
    padding: 0;
}

#MenuHeader {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    background-color: var(--backgroundHighlight);
    padding: 20px;
    border-radius: 10px 10px 0px 0px;
    border-bottom:none;
}

#MenuContent {
    overflow-y: auto;
    padding: 0px 20px 20px 20px;
}

#PopupMenu:has(#MenuContent .smallPopup) {
    height: fit-content;
}

#PopupMenu:has(#MenuContent .uncloseablePopup) #MenuHeader #MenuCloseButton {
    display: none;
}

#PopupMenu:has(#MenuContent .centeredTitle) #MenuHeader #MenuTitle {
    text-align: center;
    width: 100%;
}


.overlay.active #PopupMenu {
    margin-top: 10vh;
    visibility: visible;
    opacity: 1;
}


.breadCrumbs {
    display: flex;
    margin-bottom: 20px;
    gap: 10px;
}

.breadCrumb {
    color: var(--highlightColor);
    font-size: 19px;
}


.breadCrumb:hover {
    text-decoration: underline;
}

.menuSectionHeader {
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 5px;
}

.menuRowDetail{
    font-size: 20px;
    text-align: right;
    line-height: 25px;
    max-width: 60%;
    text-wrap: nowrap;
    overflow: scroll;
}

.menuInput{
    font-size: 20px;
    line-height: 25px;
    margin-top: 10px;
    margin-bottom: 15px;
}

.menuRow {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 5px;
    box-sizing: border-box;
}

#MenuContent textarea {
    margin-top: 15px;
    margin-bottom: 15px;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: 200px;
    min-height: 200px;
    font-size: 1rem;
}