#ai-form-form, #ai-form-popup {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #fafafa;
}

#ai-form-form label, #ai-form-popup label {
    display: block;
	margin-top: 5px;	
    margin-bottom: 5px;
    color: #000;
}

#ai-form-form textarea, #ai-form-popup textarea {
    width: calc(100% - 20px);
    padding: 8px;
    margin-bottom: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    resize: none;
}

#ai-form-form input[type="submit"], #ai-form-popup input[type="submit"] {
    background-color: #000000;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

#ai-form-form input[type="submit"]:hover, #ai-form-popup input[type="submit"]:hover {
    background-color: #171d25;
}

#character-count, #character-count-popup {
    text-align: right;
    font-size: 0.9em;
    color: black;
}

#loading-message, #loading-message-popup {
    text-align: left;
    font-size: 1.2em;
    margin-top: 20px;
    display: none;
    color: black;
}

#schema-resultaat {
    text-align: left;
    font-size: 1.2em;
    margin-top: 20px;
    color: black;
}

#schema-resultaat-popup {
    text-align: left;
    font-size: 1.2em;
    margin-top: 20px;
    color: black;
	overflow-y:scroll;
}

#ai-form-popup {
    position: fixed;
    bottom: 70px;
    right: 20px;
    width: 300px;
    height: 400px;
    z-index: 1000;
    display: none; /* Initially hidden */
    font-family: Arial, sans-serif;
    font-size: 14px; /* Adjusted font size */
    display: flex;
    flex-direction: column;
    overflow: hidden; /* Ensure the overflow is hidden initially */
}

#ai-form-popup header {
    background-color: #3D567B;
    color: #fff;
    padding: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: flex;
    align-items: center;
    position: relative; /* Added for positioning the close button */
}

#ai-form-popup header img {
    border-radius: 50%;
    margin-right: 10px;
}

#ai-form-popup header div {
    flex-grow: 1;
}

#ai-form-popup header .close-btn {
    position: absolute; /* Changed to absolute positioning */
    top: 10px; /* Adjust as necessary */
    right: 10px; /* Adjust as necessary */
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
}

#ai-form-popup textarea::placeholder {
    font-size: 14px; /* Adjust the placeholder font size here */
    color: #999; /* Adjust the placeholder color if needed */
}

#popup-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #4a90e2;
    color: #fff;
    text-align: center;
    line-height: 50px;
    cursor: pointer;
    z-index: 1000;
    display: block;
    font-size: 30px;
}

.new-question-btn {
    background-color: #4a90e2;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 10px;
    display: block;
    width: 100%;
    text-align: center;
    flex-shrink: 0;
}

