/* الإعدادات الأساسية للويدجيت */
.darb24-pw-container {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    direction: rtl;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    max-width: 100%;
    margin-bottom: 20px;
    box-sizing: border-box;
    /* إزالة الحواف الدائرية لتطابق تصميم الموقع الحاد */
    border-radius: 0; 
}

/* عنوان الويدجيت */
.darb24-pw-title {
    background-color: #7a0a0a; /* اللون العنابي للفوتر */
    color: #ffffff;
    margin: 0;
    padding: 12px 15px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    display: block;
}

/* قسم اختيار المدينة */
.darb24-pw-city-selector {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: #fafafa;
    border-bottom: 1px solid #eeeeee;
}

.darb24-pw-city-selector label {
    color: #7a0a0a;
    font-weight: bold;
    font-size: 15px;
}

.darb24-pw-city-selector select {
    background-color: #ffffff;
    border: 1px solid #7a0a0a;
    color: #333;
    padding: 6px 12px;
    font-family: inherit;
    border-radius: 0;
    outline: none;
    cursor: pointer;
    font-size: 14px;
}

/* تنسيق الجداول (مواقيت الصلاة والتوقعات) */
.darb24-pw-prayer-times table,
.forecast-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}

.darb24-pw-prayer-times th,
.forecast-table th {
    background-color: #f7f7f7; 
    color: #7a0a0a; /* عنابي للعناوين */
    padding: 10px 5px;
    font-weight: bold;
    font-size: 13px;
    border-bottom: 1px solid #eeeeee;
}

.darb24-pw-prayer-times td {
    padding: 12px 5px;
    font-weight: bold;
    font-size: 14px;
    color: #111;
}

/* قسم الطقس الحالي */
.darb24-pw-weather-current {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px 15px;
    border-top: 1px dashed #ddd;
    border-bottom: 1px dashed #ddd;
    background-color: #ffffff;
}

.darb24-pw-current-temp {
    font-size: 42px;
    font-weight: bold;
    color: #7a0a0a; /* عنابي للحرارة */
    direction: ltr;
}

.darb24-pw-weather-details {
    font-size: 13px;
    color: #555;
    line-height: 1.8;
}

/* توقعات الأيام القادمة */
.darb24-pw-weather-forecast {
    padding: 15px;
    background-color: #fafafa;
}

.forecast-title {
    color: #7a0a0a;
    font-weight: bold;
    font-size: 14px;
    margin: 0 0 12px 0;
    text-align: center;
}

.forecast-table td {
    padding: 10px 5px;
    font-size: 13px;
    font-weight: bold;
    color: #333;
}