
    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 9999;
        display: none;
    }

    .modal {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: white;
        padding: 20px;
        border-radius: 5px;
    }

    .modal-content {
        text-align: center;
    }

    #processing-img {
        width: 100px;
        height: 100px;
    }

    #meta_title, #meta_description, #meta_keywords, #focus {
        padding: 3px 8px;
        font-size: 1.1em;
        line-height: 100%;
        height: 3em;
        width: 100%;
        outline: 0;
        margin: 0 0 3px;
        background-color: #fff;
    }


    /* Styles for the submit button */
    #submit-btn {
        background-color: #4CAF50; /* Green background */
        border: none; /* No border */
        color: white; /* White text */
        padding: 10px 20px; /* Padding */
        text-align: center; /* Centered text */
        text-decoration: none; /* No underline */
        display: inline-block; /* Display as inline-block */
        font-size: 16px; /* Font size */
        margin: 4px 2px; /* Margin */
        cursor: pointer; /* Cursor on hover */
        border-radius: 4px; /* Rounded corners */
        transition-duration: 0.4s; /* Animation duration */
    }

    /* Styles for button hover effect */
    #submit-btn:hover {
        background-color: #286dc7; /* Darker green */
        color:rgb(255, 255, 255);
    }

    /* Styles for button click effect */
    #submit-btn:active {
        background-color: #3e8e41; /* Dark green */
        transform: translateY(2px); /* Move down */
    }

    /* new button  */
    /* Button resets and style */

.aibuttongenerate{width: 100%;
    height: 50px;
margin-bottom:2rem;
    position: relative;}

.aibutton {
    margin: 10px auto;
    font-size: 16px;
    color: #ffffff;
    cursor: pointer;
    border-radius: 5px;
    background-color: #135e96 !important;
    padding: 10px 15px;
    border: 0px solid #000;   
    margin-right: 10px;
    float: inline-end;
    }

    .labelmeta{
        font-size: 16px;
        line-height: 1.7;
    }

    .highlightpoints {
        min-height: 50px;
        padding: 10px;
        font-size: 16px;
        line-height: 1.5;
        resize: none; /* disable resizing */
      }
.aibuttongenerate{width: 100%;
    height: 50px;
    position: relative;}

.aibutton {
    margin: 10px auto;
    font-size: 16px;
    color: #ffffff;
    cursor: pointer;
    border-radius: 5px;
    background-color: #135e96 !important;
    padding: 10px 15px;
    border: 0px solid #000;   
    margin-right: 10px;
    float: inline-end;
    }

    .labelmeta{
        font-size: 16px;
        line-height: 1.7;
    }

    .highlightpoints {
        min-height: 50px;
        padding: 10px;
        font-size: 16px;
        line-height: 1.5;
        resize: none; /* disable resizing */
      }

      /* reg from */
.aicontainer{
    width: 650px;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    
}
.aiform-group {
    margin-bottom: 10px;
}
.aiform-group label {
    font-weight: bold;
    padding-left:.4rem;
}

.aiform-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}
.aicheckbox label {
    font-weight: normal;
}
.aibtn-default {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}
.aibtn-default:hover {
    background-color: #0056b3;
}
.aicontainer form input[type=email],input[type=number],input[type=text]{
width: 100%;
height: 30px;
margin-top:7px;
}
.loader {
    display: none;
    border: 4px solid #f3f3f3; /* Light gray border */
    border-top: 4px solid #3498db; /* Blue border */
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite; /* Spin animation */
    position: fixed; /* Position fixed for centering */
    top: 50%;
    left: 50%;
    margin-top: -15px; /* Half of the height */
    margin-left: -15px; /* Half of the width */
    z-index: 9999; /* Ensure the loader appears above other content */
}


@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}