.overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    display: none;
    justify-content: center;
    align-items: center;
}

/* Styling for popup box */
.popup {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    max-width: 80%;
    text-align: center;
    position: relative;
}

.dropDownOption{
    border-radius: 7px;
    min-height: 30px;
    border: 1px solid #ccc;
    background-color: white;
    margin-bottom: 10px;
    width: 100%;
}

.closePopupButton{
    position: absolute;
    top: 5px;
    right: 0;
    max-width: 40px;
    background-color: transparent;
}

.text-block-4{
    color: var(--sectionheadingcolor);
    text-transform: uppercase;
    text-shadow: 2px 1px 1px var(--white);
    border-radius: 6px;
    font-size: 20px;
    font-weight: 700;
    text-align: left;
}

.submitButton{
    background-color:var(--sectionheadingcolor);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    text-align: center;
    text-decoration: none;
    margin-right: auto;
    cursor: pointer;
}

.delete-button{
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}
.delete-button img{
    max-width: 15px; 
    padding: 0;   
}

.selectionDiv{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 5px 0;
}

.spanClass1{
    display: inline-block;
    width: 100%;
    text-align: left;
}

.spanClass2{
    display: inline-block;
    width: 100%;
    text-align: left;
}

.div-block-5{
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    color: var(--sectionheadingcolor);
    font-size: 15px;
    font-weight: 700;
}