.teaFormSectionOverlayContainer {
    position: fixed;
    top: 0px;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.teaFormSection {
    justify-content: center;
    align-items: center;
    width: 420px;
    background-color: #4d0b7a;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    margin: auto;   
   /*  opacity: 1;
    transition: opacity 0.3s ease; */
    position: relative;
    cursor: pointer;
}

.teaFormSection h4 {
    color: white;
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.teaForm {
    display: flex;
    flex-direction: column;
    color: white;
    padding-bottom: 20px;
}
.closeButton {
    position: absolute;
    top: 10px;
    left: 5px;
    font-size: 24px;
    color: white;
    cursor: pointer;
    background: none;
    border: none;
     cursor: pointer;
}

.closeButton:hover {
    color: #ccc;
}

.teaForm {
    display: flex;
    flex-direction: column;
    color: white;
    padding-bottom: 20px;
}

p {
    color: white;
    margin-bottom: 10px;
    font-size: 14px;
}