.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
  padding-top: 60px;
}

.modal-content {
  background-color: #fefefe;
  margin: 5% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 50%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  animation: fadeIn 0.5s;
}

.close {
    color: #ff4d4d;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
  color: #ff4d4d;
  text-decoration: none;
  cursor: pointer;
}

.modal-content h2 {
  font-family: "Arial", sans-serif;
  font-size: 24px;
  color: #333;
  margin-bottom: 20px;
}

.modal-content label {
  font-family: "Arial", sans-serif;
  font-size: 16px;
  color: #333;
  margin-bottom: 5px;
  display: block;
}

.modal-content input {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.modal-content button {
  background-color: #ff4d4d;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.modal-content button:hover {
  background-color: #ff4d4d;
}

.modal-content p {
  font-family: "Arial", sans-serif;
  font-size: 14px;
  color: #333;
}

.modal-content a {
  color: #ff4d4d;
  text-decoration: none;
}

.modal-content a:hover {
  text-decoration: underline;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}



.large-link {
    font-size: 1.4em; 
    font-weight: bold;
    color: #007bff;
    text-decoration: underline;
}

.large-link:hover {
    color: #0056b3;
}