.rashed-app-root {
  direction: rtl;
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  max-width: 720px;
  margin: 0 auto;
  padding: 16px 16px 88px;
  color: #1a1a2e;
}

.rashed-page { display: flex; flex-direction: column; gap: 16px; }
.rashed-header h1 { margin: 0 0 4px; font-size: 1.5rem; }
.rashed-header p { margin: 0; color: #5c6370; }

.rashed-card {
  background: #fff;
  border: 1px solid #e6e8ef;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 4px 16px rgba(26, 26, 46, 0.06);
}

.rashed-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.rashed-action-card {
  text-decoration: none;
  color: inherit;
  transition: transform .15s ease, box-shadow .15s ease;
}
.rashed-action-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,26,46,.1); }
.rashed-action-card .dashicons { font-size: 28px; width: 28px; height: 28px; color: #f59e0b; }
.rashed-action-card h3 { margin: 8px 0 4px; font-size: 1rem; }
.rashed-action-card p { margin: 0; color: #5c6370; font-size: .875rem; }

.rashed-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid #d5dae3;
  background: #fff;
  color: #1a1a2e;
  border-radius: 10px;
  padding: 10px 16px;
  cursor: pointer;
  font-size: .95rem;
}
.rashed-btn:disabled { opacity: .5; cursor: not-allowed; }
.rashed-btn-primary { background: #f59e0b; border-color: #f59e0b; color: #1a1a2e; font-weight: 600; }
.rashed-btn-secondary { background: #f4f6fb; }

.rashed-stats-list { list-style: none; margin: 0; padding: 0; }
.rashed-stats-list li { padding: 6px 0; border-bottom: 1px solid #f0f2f7; }
.rashed-stats-list li:last-child { border-bottom: 0; }

.rashed-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.rashed-table th, .rashed-table td { padding: 8px; border-bottom: 1px solid #eef1f6; text-align: right; }

.rashed-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border-top: 1px solid #e6e8ef;
  padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
  z-index: 100;
}
.rashed-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-decoration: none;
  color: #5c6370;
  font-size: .75rem;
}
.rashed-nav-item .dashicons { font-size: 20px; width: 20px; height: 20px; }

.rashed-login-card { text-align: center; margin-top: 40px; }