/* styles.css */

.banner-image {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 30px; /* مسافة بين البنر والعنوان */
}





/* @@@@@@@@@@@@@@@@@@@@@@ خاص بالتاريخ الميلادي الذي يظهر في أعلى الصفحة  */
.current-date {
	width: 40%;
    font-size: 23px; /* حجم الخط */
    color: #000000; /* لون النص */
    text-align: center; /* محاذاة النص */
    margin: 10px auto; /* هوامش خارجية */
    padding: 3px; /* هوامش داخلية */
    background-color: #E7E0CC; /* لون خلفية اختياري */
    border-radius: 30px; /* زوايا مستديرة */
}

.current-date {
    float: left; /* يجعل العنصر يتموضع إلى اليسار */
}












/*@@@@@@@@@@@@@ كود خيارات السنة والشهر @@@@@@@@@@@*/	     

.label-blue {
    font-weight: bold;
    font-size: 1.5em;
    color: #000080;
}

select {
    font-size: 1.5em;
    padding: 10px 10px;
    border-radius: 50px;
    border: 10px solid #000000;
    background: #FFFFB9; /* خلفية أصفر  */
    color: #000000; /* لون النص أسود*/
    text-align: center;
    text-align-last: center; /* لضبط النص في المنتصف */
}

select option {
    background: #ffffff; /* خلفية بيضاء لخيار القائمة */
    color: #000000; /* لون النص للخيار */
}

.reset-button {
    font-size: 50px;
    padding: 20px 20px 20px 20px;
    margin: 40px;
    background-color: #00B900;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    float: right; /* محاذاة الزر إلى اليمين */
    margin-right: 0; /* تأكد من عدم وجود هامش أيسر */
}

.reset-button:hover {
    background-color: #e60000;
}

body {
    direction: rtl;
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 20px;
    margin: 0;
    padding: 20px;

    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #257247;
}

/* تصميم الحاوية الرئيسية */
.container {
    background-color: #E7E7E7; /* لون خلفية */
    background-image: url('pic/01.gif'); /* صورة خلفية */
    padding: 20px;
    border-radius: 30px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    width: 100%;
    text-align: right;
    margin: 20px auto; /* إضافة هوامش علوية وسفلية بقيمة 20 بكسل */
    padding: 30px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
}

table, th, td {
    border: 1px solid black;
}

th, td {
    padding: 15px;
    text-align: center;
    font-size: 30px; /* حجم خط الأيام والتواريخ */
    font-weight: bold;
}

th {
    background-color: #333;
    color: #fff;
}

tr.current-day td {
    background-color: #00B900; /* لون مميز ليوم اليوم الحالي */
    color: white;
}

td.gregorian-date {
    width: 250px;
    font-size: 35px;
    background-color: #E1E1E1; /* تظليل خلفية */
}

td.hijri-date {
    font-size: 35px;
    background-color: #FFD5AA; /* تظليل خلفية */
}

td.day-name {
    font-size: 45px;
    background-color: #326565; /* تظليل خلفية أسماء الأيام */
    color: white;
}

/* المناسبات */
td.mnasbat {
    width: 200px;
    font-size: 40px;
    background-color: #CECEFF; /* تظليل خلفية */
}
