/* Final Prompt Box Styling */
.aipg-prompt-section {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.aipg-prompt-section h2 {
    color: #007bff;
    font-size: 1.5em;
    margin-bottom: 10px;
}

#final-prompt {
    width: 100%;
    height: 150px;
    padding: 10px;
    font-family: Arial, sans-serif;
    font-size: 1.1em;
    border-radius: 5px;
    border: 1px solid #ccc;
    background-color: #fff;
    resize: none; /* Prevent resizing */
}

/* Highlight Titles */
.aipg-form-group label {
    font-weight: bold;
    color: #333;
}

/* Real-Time Prompt Box */
#realtime-prompt {
    background-color: #e9ecef;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
    font-size: 1.1em;
    color: #333;
}