body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 400px;
    direction: rtl; 
    font-weight: bold; /* تحديد سميك النص داخل الأزرار */
}

h1 {
    color: #2c3e50; /* لون العنوان */
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 10px;
    color: #3498db; /* لون التسمية */
    direction: rtl; 
}

input {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 30%;
    box-sizing: border-box;
    direction: rtl; /* تغيير اتجاه حقل الإدخال إلى اليمين */
    font-size: 16px; /* تكبير حجم النص داخل الأزرار */
    font-weight: bold; /* تحديد سميك النص داخل الأزرار */
}

button {
    background-color: #2eaa71; /* لون الزر */
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 16px; /* تكبير حجم النص داخل الأزرار */
    font-weight: bold; /* تحديد سميك النص داخل الأزرار */
}

button:hover {
    background-color: #27ae60; /* لون الزر عند التحويل */
}

#weatherInfo {
    margin-top: 20px;
    color: #333; /* لون نص معلومات الطقس */
}

/* أضف أنماط التصميم الإضافية حسب الرغبة */
