.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); 
  display: none;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease-in-out; 
}


.modal-content {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  width: 100%;
  max-width: 500px; 
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); 
  transform: scale(0.9);
  animation: fadeIn 0.3s ease-out; 
}

.modal h3 {
  font-size: 24px;
  color: #333;
  font-weight: 600;
  margin-bottom: 20px;
}


.modal p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 28px;
  color: #aaa;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-btn:hover {
  color: #333; 


.modal-footer {
  margin-top: 20px;
}

.btn-close {
  background-color: #007bff;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-close:hover {
  background-color: #0056b3;
}


@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
