.modal-content{height: 90vh !important;
    overflow-y: scroll;
}
.feedback-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;

}
.feedback-form{
    color: #444;
    font-family: "Roboto", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: normal
;
}

.feedback-form .form-group {
    margin-bottom: 20px;
}

.feedback-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.feedback-form .required {
    color: #e74c3c;
}

.feedback-form input[type="text"],
.feedback-form input[type="email"],
.feedback-form input[type="number"],
.feedback-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.feedback-form input:focus,
.feedback-form textarea:focus {
    outline: none;
    border-color: #3498db;
}

.feedback-form .error-message {
    display: block;
    color: #e74c3c;
    font-size: 12px;
    margin-top: 5px;
}

.feedback-form .submit-btn {
    background-color: #3498db;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.feedback-form .submit-btn:hover {
    background-color: #2980b9;
}

.feedback-form .submit-btn:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
}

.feedback-form .feedback_form_form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 4px;
    display: none;
}

.feedback-form .feedback_form_form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.feedback-form .feedback_form_form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}



.modal-content{
    background:#f5f5f5 !important
}