body {
  font-family: Tahoma, Arial, sans-serif;
  background: #f7f7f7;
  margin: 0;
  padding: 0;
  direction: rtl;
}

header {
  text-align: center;
  padding: 15px;
  background: #004d66;
  color: white;
}

#dateHeader {
  font-weight: bold;
  font-size: 1.2em;
  margin: 10px 0;
}

.nav-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.nav-buttons button {
  padding: 8px 12px;
  border: none;
  border-radius: 4px;
  background: #007799;
  color: white;
  cursor: pointer;
}

.nav-buttons button:hover {
  background: #005f73;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  padding: 15px;
}

.card {
  background: white;
  padding: 10px;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  text-align: center;
}

.card h2 {
  margin: 0 0 5px;
  font-size: 1em;
}

.val {
  font-size: 1.2em;
  font-weight: bold;
  direction: ltr; /* الأرقام تبقى إنجليزية */
}

#commitmentsList {
  list-style: none;
  padding: 10px;
  margin: 0;
}

#commitmentsList li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  margin-bottom: 5px;
  padding: 8px;
  border-radius: 4px;
}

footer {
  text-align: center;
  padding: 15px;
}
