/* === Universal Modal Styling === */

.universal-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeIn 0.2s ease-in-out;
}

.universal-modal-box {
  background: white;
  padding: 20px 30px;
  border-radius: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.25);
  animation: popIn 0.25s ease-out;
}

.universal-modal-label {
  font-weight: 600;
  font-size: 16px;
  margin: 0;
  color: #333;
}

.universal-modal-select {
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}
.universal-modal-select:focus {
  border-color: #007bff;
}

.universal-modal-btn {
  background: linear-gradient(135deg, #007bff, #00c6ff);
  color: white;
  border: none;
  border-radius: 6px;
  padding: 8px 20px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
}
.universal-modal-btn:hover {
  background: linear-gradient(135deg, #0056b3, #0094cc);
  transform: translateY(-2px);
}

/* אנימציות */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes popIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}