.modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.hidden {
  display: none !important;
}

.modal-content {
  background: white;
  padding: 20px 25px;
  border-radius: 8px;
  width: 320px;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.2);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  flex-direction: column;
}

.modal-content h3 {
  margin-top: 0;
  margin-bottom: 12px;
}

.modal-content label {
  font-weight: 600;
  font-size: 0.9rem;
  color: #333;
}

.modal-content input,
.modal-content textarea {
  margin-top: 5px;
  padding: 7px 10px;
  font-size: 0.9rem;
  border-radius: 5px;
  border: 1.5px solid #ccc;
  resize: vertical;
}

.modal-buttons {
  margin-top: 15px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.primary-btn {
  background-color: #2f80ed;
  color: white;
  border: none;
  padding: 7px 15px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
}

.primary-btn:hover {
  background-color: #1c5ed7;
}

.secondary-btn {
  background-color: #eee;
  border: 1px solid #ccc;
  color: #555;
  padding: 7px 15px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
}

.secondary-btn:hover {
  background-color: #ddd;
}
