/* تخصيص ألوان الفورم */
body {
    background-color: #f7f7f7;
}
.container {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
}
h1 {
    color: #444444;
    font-size: 24px;
    margin-bottom: 10px;
}
/* تخصيص حقول الإدخال */
.user-info, .complaint, .clinic-selection, .file-upload, .date-selection {
    margin-bottom: 10px;
}
label {
    display: block;
    margin-bottom: 5px;
}
input, textarea, select {
    width: 100%;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
}
/* تخصيص زر الإرسال */
button {
    background-color: #444444;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
