/* إعدادات عامة للصفحة */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  /* direction: rtl; */
  background-color: #202020;
  color: #c9d1d9;
}

.container {
  width: 90%;
  margin: 20px auto;
  text-align: center;
}

h1 {
  color: #f0f6fc;
  margin-bottom: 20px;
  font-size: 2rem;
}

/* صندوق البحث */
#searchBox {
  width: 50%;
  padding: 12px 15px;
  margin-bottom: 20px;
  font-size: 1rem;
  border: 1px solid #444c56;
  border-radius: 8px;
  background-color: #2d333b;
  color: #f0f6fc;
  outline: none;
  transition: all 0.3s;
}

#searchBox:focus {
  border-color: #58a6ff;
  box-shadow: 0 0 5px #58a6ff;
}

/* تصميم الجدول */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background-color: #2d333b;
  border-radius: 5px;
  overflow: hidden;
}

th, td {
  border: 1px solid #444c56;
  padding: 12px;
  text-align: center;
  font-size: 1rem;
}

th {
  background-color: #161b22;
  color: #ffffff;
  font-weight: bold;
}

tr:nth-child(even) {
  background-color: #1f2428;
}

tr:hover {
  background-color: #343942;
  transition: background-color 0.3s;
}

td {
  color: #c9d1d9;
}

th:first-child, td:first-child {
  border-right: none;
}

th:last-child, td:last-child {
  border-left: none;
}

/* تأثير الظل للأقسام */
table {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
