body {
  font-family: 'Helvetica Neue', sans-serif;
}

[dir="rtl"] {
  text-align: right;
}

html {
  scroll-behavior: smooth;
}
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
}

.modal-content {
  background-color: #fff;
  margin: auto;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 700px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  position: relative;
  font-family: sans-serif;
}

.close-button {
  color: #aaa;
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 28px;
  cursor: pointer;
}

.form-grid .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

textarea {
  height: 100px;
  resize: none;
}

.appointment-type {
  justify-content: space-between;
}

.appointment-type label {
  flex: 1;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}

.cancel-button {
  background: #eee;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
}

.submit-button {
  background-color: #002b5c;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
}
