@import url('https://fonts.googleapis.com/css2?family=Amiri:wght@400;700&display=swap');
/* تطبيق خط Amiri على كل العناصر في الموقع */
* {
  font-family: 'Amiri', serif !important;
}
body {
  direction: rtl;
  margin: 0;
  padding: 0;
  background: #f7f7f7;
  color: #333;
}
header {
  background: #004d40;
  color: #fff;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
nav a {
  color: #fff;
  margin-left: 1rem;
  text-decoration: none;
}
.card {
  background: white;
  padding: 1rem;
  margin: 1rem;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
button {
  background: #004d40;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  cursor: pointer;
}
button:hover {
  background: #00695c;
}
button.logout-btn {
  background: #e63946;        /* أحمر مميز */
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;           /* يخلي الخط أسمك شوية */
  font-family: "Cairo", sans-serif;  /* نفس خط الموقع */
  letter-spacing: 0.5px;      /* تباعد بسيط بين الحروف */
  transition: all 0.3s ease;  /* حركة ناعمة */
}

button.logout-btn:hover {
  background: #d62828;        /* أحمر أغمق عند المرور */
  transform: scale(1.05);     /* يكبر الزر شوية عند الهوفر */
}

