/* Style the form container */
#jcf-form {
    max-width: 500px;
    margin: 20px auto;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #f9f9f9;
}

/* Style the textarea */
#jcf-content {
    width: 100%;
    height: 150px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    margin-bottom: 15px;
    resize: vertical;
}

/* Style the submit button */
#jcf-submit {
    background-color: #67b557;  /* Your preferred button color */
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#jcf-submit:hover {
    background-color: #5aa04b;  /* Slightly darker on hover */
}

/* Style the response div */
#jcf-response {
    margin-top: 20px;
    font-size: 16px;
    color: #333;
}
