/* MODAL */
.modal .modal-content {
    overflow-y: auto;
  border: 1px solid transparent;
    border-radius: 10px;
    background-image: linear-gradient(white, white), 
                    linear-gradient(to right, #ff66b2, #ff3399, #ff0066, #cc0066);
    background-origin: border-box;
    background-clip: content-box, border-box;
  }
  .modal-header button {
    background: none;
    border: none;
    float: right;
    color: #00ffcc;
    transition: color 0.3s ease, transform 0.2s ease; /* Smooth color change and slight scaling */
  }
  .modal-header button:hover {
    cursor: pointer;
    color: #ff66b2; /* Change to a pinkish color on hover */
    transform: scale(1.1); /* Slight zoom effect for better interactivity */
  }
  .modal-header h1,
  .modal-header h2,
  .modal-header h3 {
    font-family: 'coolRetro';
    color: #ff69b4;
  }
  .modal-body {
    font-family: 'josephine'
  }
  .modal-body input,
  .modal-body textarea,
  .modal-body select,
  .modal-body button {
    resize: none;
    font-size: 1rem;
    padding: 10px;
    width: 90%;
    margin: 10px 0;
    border: 2px solid #00ffcc;
    background-color: white;
    box-shadow: 0 0 5px #00ffcc;
  }
  .modal-body input:focus,
  .modal-body textarea:focus {
    outline: none;
    box-shadow: 0 0 10px #00ffcc; /* Enhanced glow on focus */
  }
  .modal-footer button {
    padding: 10px 20px;
    font-size: 1.2rem;
    font-family: 'josephine';
    border: 2px solid #00ffcc; /* Neon aqua border */
    background-color: white;
    color: #ff69b4; /* White text for visibility */
    border-radius: 5px;
    text-shadow: 0 0 2px #ff69b4; /* Subtle neon pink glow */
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
  }
  .modal-footer button:hover {
    transform: scale(1.02); /* Subtle scaling on hover */
    border: 2px solid #00ffcc; /* Neon aqua border */
    background-color: white;
    color: #ff69b4; /* White text for visibility */
  }
  .modal-footer button:active {
    transform: scale(0.99); /* Pressed-in effect */
    box-shadow: 0 0 5px #ff69b4; /* Reduced glow for pressed state */
  }