.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: #2c3e50;
  color: #ecf0f1;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 600px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  animation-name: animateModal;
  animation-duration: 0.4s;
}

@keyframes animateModal {
  from {top: -300px; opacity: 0}
  to {top: 0; opacity: 1}
}

.modal-content h2 {
  margin: 0 0 10px;
}

.modal-content p {
  margin: 0 0 20px;
  font-size: 14px;
}

.btn {
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  margin: 5px;
}

.btn-primary {
  background-color: #27ae60;
  color: #fff;
}

.btn-secondary {
  background-color: #c0392b;
  color: #fff;
}