@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;700&display=swap');

.raya-table-wrapper {
  width: 400px;
  padding: 48px 8px;
  margin: 0 auto;
  border-radius: 16px;
  background-color: transparent;
}

.raya-table {
  width: 100%;
  text-align: center;
  border-collapse: collapse;
  font-family: 'Tajawal', sans-serif;
  direction: rtl;
  border-radius: 12px;
  overflow: hidden;
  table-layout: fixed;
}

.raya-table th,
.raya-table td {
  border: 1px solid #EEEEEE;
  font-size: 18px;
  vertical-align: middle;
  padding: 24px;
}

/* رأس الجدول كله أبيض */
.raya-table thead tr {
  background-color: #ffffff !important;
}

/* تلوين باقي الصفوف بالتناوب */
.raya-table tbody tr:nth-child(odd) {
  background-color: #FCFCFC;
}

.raya-table tbody tr:nth-child(even) {
  background-color: #ffffff;
}

/* مقاسات الأعمدة */
.raya-table th:first-child,
.raya-table td:first-child {
  width: 110px;
  text-align: right;
  padding-right: 16px;
  font-weight: 500;
  font-size: 17px;
  vertical-align: middle;
}

.raya-table th:nth-child(2),
.raya-table td:nth-child(2) {
  width: 110px;
}

.raya-table th:nth-child(3),
.raya-table td:nth-child(3) {
  width: 164px;
}

.raya-table img {
  display: block;
  margin: 0 auto;
}