.apointa-form {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  max-width: 500px;
  margin: 0 auto;
  font-family: Arial, sans-serif;
}

.apointa-form h3 {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

.apointa-form p {
  margin-bottom: 15px;
}

.apointa-form label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

.apointa-form input[type="text"],
.apointa-form input[type="tel"],
.apointa-form input[type="datetime-local"],
.apointa-form input[type="email"],
.apointa-form textarea,
.apointa-form select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}

.apointa-form input[type="submit"] {
  background-color: #0073aa;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.apointa-form input[type="submit"]:hover {
  background-color: #005d8f;
}



/* في ملف CSS خارجي أو داخل <style> */
.popup-overlay {
  position: fixed !important;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-content {
  background: #fff;
  padding: 30px;
  width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  position: relative;
}

.close-popup {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 22px;
  cursor: pointer;
}

