.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.space-between {
  align-items: center;
}
.op-row button {
  background-color: #28a745;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
  font-size : 25px ; 
}
.op-row button:hover {
  background-color: #218838;
}
.op-stock-info {
  font-size: 0.9em;
  color: #555;
}
.op-status-msg {
  margin-top: 10px;
  color: black;
  font-weight: bold;
  font-size : 20px ;
  width: 100%;
  background-color: #87f5a1;
  text-align: center;
  border-radius : 5px ; 
}
@media (min-width: 700px) {
  .op-row input {
    flex: 1 1 calc(50% - 10px);
  }
}
/* أضف هذه الأنماط في نهاية الملف */
.op-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.op-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.op-popup-content {
  background: white;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  max-width: 90%;
  width: 400px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.op-popup-title {
  font-size: 24px;
  margin-bottom: 20px;
  color: #28a745;
}

.op-popup-message {
  font-size: 18px;
  margin-bottom: 25px;
}

.op-popup-button {
  background-color: #28a745;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
}

.op-popup-button:hover {
  background-color: #218838;
}