.op-order-form-container {
  background: #f5f5f5;
  padding: 20px;
  margin-top: 20px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-family: Arial, sans-serif;
  direction: rtl;
}
h3 {
  text-align: center;
  margin-bottom: 20px;
}
.op-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}
.op-row input {
  flex: 1 1 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
}
.op-row button {
  background-color: #700910;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
  font-size: 20px;
}
.op-row button:hover {
  background-color: blueviolet;
}
.op-status-msg {
  margin-top: 10px;
  color: black;
  font-weight: bold;
  font-size: 18px;
  width: 100%;
  background-color: #87f5a1;
  text-align: center;
  border-radius: 5px;
}
.op-modal {
  display: none;
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}
.op-modal-content {
  background: white;
  padding: 30px;
  font-size :20px;
  border-radius: 10px;
  text-align: center;
}
#op-modal-close {
  background-color: #007bff;
  color: white;
  padding: 10px 25px;
  margin-top: 15px;
  border: none;
  border-radius: 5px;
  font-size: 20px;
  cursor: pointer;
}
.spinner {
  width: 18px;
  height: 18px;
  border: 3px solid #ffffff;
  border-top: 3px solid transparent;
  border-radius: 50%;
  display: inline-block;
  margin-left: 10px;
  animation: spin 0.8s linear infinite;
  vertical-align: middle;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
