.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-container {
  background: #ffffff;
  border-radius: 10px;
  padding: 25px;
  width: 360px;
  max-width: 90%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  direction: rtl;
  text-align: right;
}

.popup-title {
  margin-top: 0;
  margin-bottom: 15px;
  color: #007bff;
  font-size: 1.2rem;
  font-weight: 600;
}

.popup-input,
.popup-textarea {
  width: 100%;
  margin-bottom: 12px;
  padding: 10px;
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.95rem;
  box-sizing: border-box;
  background-color: #fafafa;
}

.popup-textarea {
  height: 120px;
  resize: vertical;
}

.popup-button-group {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
}

.popup-button {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 6px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #fff;
  background-color: #007bff;
}

.popup-button:hover {
  background-color: #0056b3;
}

.popup-button.cancel {
  background-color: #6c757d;
}

.popup-button.cancel:hover {
  background-color: #5a6268;
}
