    /* Basic styles for the popup overlay */
    #popupOverlay {
        display: none; /* Hidden by default */
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        justify-content: center;
        align-items: center;
        z-index: 20000;
    }

    /* Styles for the popup box */
    #popup-form {
        background-color: white;
        padding: 16px;
        width: 90%;
        max-width: 440px;
        border-radius: 5px;
        box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
        position: relative;
    }

    #popup-form h3{
        font-size: 22px;
        font-weight: 500;
        text-transform: capitalize;
        margin-bottom: 14px;
    }

    /* Styles for the close button */
    .close-btn {
        width: 40px !important;
        height: 40px !important;
        position: absolute;
        top: -6px;
        right: -6px;
        background-color: #f44336;
        color: white;
        border: none;
        padding: 5px;
        cursor: pointer;
        border-radius: 50%;
    }

    /* Basic form styles */
    #popup-form input[type="text"],
    #popup-form input[type="email"],
    #popup-form input[type="number"],
    #popup-form button {
        width: 100%;
        padding: 10px;
        margin-bottom: 20px;
        border: none;
        border-bottom: 1px solid #111111;
    }

    #popup-form textarea{
        width: 100%;
        padding: 10px;
        margin-bottom: 20px;
        border: none;
        border-bottom: 1px solid #111111;
    }

    .blogcloseBtn{
        width: 100% !important;
        color: #ffffff;
        border: 1px solid #E38A36 !important;
        background-color: #E38A36;
        margin: 0px !important;
    }