/* style.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Cairo", sans-serif;
}

body {
  background: #f9fafc;
  color: #222;
  direction: rtl;
  line-height: 1.7;
}
.header {
  background: linear-gradient(135deg, #1a73e8, #4dabf7);
  color: #fff;
  text-align: center;
  padding: 40px 20px;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}
.gg {
  padding-right: 20px;
  padding-top: 30px;
  background-color: transparent;
}

.header h1 {
  font-size: 2.5rem;
  margin: 0;
}

.header p {
  margin-top: 10px;
  font-size: 1.2rem;
  opacity: 0.9;
}

/* الجدول */
.schedule {
  padding: 50px 20px;
  text-align: center;
}
table {
  border-radius: 15px;
}
.schedule h2 {
  margin-bottom: 20px;
  color: #004aad;
}

.schedule table {
  width: 80%;
  margin: auto;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.schedule th,
.schedule td {
  border: 1px solid #ddd;
  padding: 12px;
}

.schedule th {
  background: #004aad;
  color: #fff;
}
/* الفوتر */
footer {
  background: #004aad;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 22px;
}
@media (max-width: 425px) {
  .schedule {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* علشان يبقى سهل في الموبايل */
  }
}
@media (max-width: 430px) and (min-width: 425px) {
  .schedule {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* علشان يبقى سهل في الموبايل */
  }
}
