#meal-plan-modal::backdrop {
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}
#meal-plan-modal {
    max-height: 90vh;
    width: 100%;
    max-width: 100%;
    border: none;
    overflow-y: auto;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: none !important;
}
#meal-plan-modal[open], #meal-plan-modal:not(.bmi-hidden) {
    display: block !important;
}
@media (min-width: 768px) {
    #meal-plan-modal {
        width: auto;
        max-width: 48rem;
        margin: 2.5rem auto;
    }
}
#meal-plan-modal .form-group {
    vertical-align: top;
    margin: 8px 0;
    display: block;
}
#meal-plan-modal form label {
    margin-bottom: 5px;
    margin-right: 5px;
    display: inline-block;
}
#meal-plan-modal form small {
    margin-top: 3px;
    display: block;
}
.popup-section.bmi-hidden {
    display: none !important;
}
.bmi-close-button {
    position: absolute;
    top: 0;
    right: 0;
    color: #6b7280;
    font-size: 1.5rem;
    line-height: 1;
}
.bmi-modal-title {
    font-family: inherit;
    font-weight: bold;
    text-align: left;
    font-size: 1.5rem;
    color: #1e293b;
    margin: 0 0 1.25rem;
    padding-right: 30px;
}
.bmi-modal-text {
    font-size: 1rem;
    font-family: inherit;
    text-align: left;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 0.75rem;
}
.bmi-warning-text {
    font-size: 0.875rem;
    font-family: inherit;
    text-align: left;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 0.75rem;
}
.bmi-submit-button {
    display: block;
    width: 100%;
    text-align: center;
    font-weight: 600;
    font-family: inherit;
    font-size: 1rem;
    border-radius: 9999px;
    background-color: #a91f55;
    color: white;
    max-height: 3rem;
    line-height: 1.75;
    padding: 0.5rem 1.5rem;
    margin-bottom: 0.75rem;
}
.bmi-submit-button:hover {
    background-color: #6b7280;
    color: white;
}
.bmi-customize-title {
    font-size: 1.5rem;
    font-weight: bold;
    font-family: inherit;
    color: #1e293b;
    margin-bottom: 1.25rem;
    padding-right: 30px;
}
.bmi-modal-text-center {
    font-size: 1rem;
    font-family: inherit;
    text-align: center;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 0.75rem;
}
.bmi-email-title {
    font-size: 1.25rem;
    color: #1e293b;
    text-transform: uppercase;
    font-weight: 600;
    font-family: inherit;
    margin: 1.5rem 0 0.75rem;
    text-align: left;
}
.bmi-loading {
    opacity: 0.7;
    cursor: not-allowed;
}
.bmi-spinner {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border: 2px solid #ffffff;
    border-top: 2px solid #1e293b;
    border-radius: 50%;
    animation: bmi-spin 1s linear infinite;
    margin-right: 0.5rem;
    vertical-align: middle;
}
@keyframes bmi-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.swal2-container {
    z-index: 1100 !important;
}