.feedback-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feedback-form textarea {
    width: 90%; /* Adjusts to fit within the viewport */
    max-width: 500px; /* Limits the maximum width */
}

.feedback-form input[type="submit"] {
    padding: 10px 20px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #007bff;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.feedback-form input[type="submit"]:hover {
    background-color: #0056b3;
}
