
/* خط عام للموقع */
body {
  font-family: 'Cairo', sans-serif;
  background-color: #f8f9fa;
  color: #212529;
}

/* العناوين */
h1, h2, h3, h4 {
  font-weight: 700;
  color: #343a40;
}

/* الأزرار */
button,
input[type="submit"],
.btn {
  font-family: inherit;
  border-radius: 6px;
  padding: 10px 20px;
  transition: all 0.3s ease-in-out;
}

.btn-primary {
  background-color: #007bff;
  border-color: #007bff;
  color: #fff;
}

.btn-primary:hover {
  background-color: #0056b3;
  border-color: #004ca0;
}

/* الحقول */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
textarea,
select {
  border-radius: 6px;
  border: 1px solid #ced4da;
  padding: 10px 12px;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 15px;
}

/* الجداول */
table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
}

table th, table td {
  padding: 12px;
  border: 1px solid #dee2e6;
}

table th {
  background-color: #f1f3f5;
  font-weight: 600;
}

/* الروابط */
a {
  color: #007bff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* رسائل التنبيه */
.alert {
  padding: 15px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-weight: 500;
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
}

.alert-danger {
  background-color: #f8d7da;
  color: #721c24;
}
.custom-register-button {
  border-radius: 5px; /* جعل الزوايا مدورة */
  padding: 10px 20px;
  background-color: #0073aa; /* نفس لون أزرار ووردبريس */
  color: white;
  border: none;
  font-size: 14px;
  transition: background-color 0.3s ease;
  margin-right: 10px;
}

.custom-register-button:hover {
  background-color: #005a8c;
  color: #fff;
  text-decoration: none;
}
