 body {
      font-family: 'Courier New', Courier, monospace;
      text-align: center;
      background-color: #1e002b;
      color: #f8e1ff;
      padding: 20px;
    }
    .container {
      max-width: 500px;
      margin: auto;
      background: linear-gradient(135deg, #2a003e, #4b0066);
      padding: 20px;
      border-radius: 15px;
      box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    }
    h1 {
      font-family: 'Papyrus', fantasy;
      font-size: 2.5em;
      margin-bottom: 20px;
      color: #ffe6ff;
      text-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff;
    }
    label {
      display: block;
      margin: 10px 0 5px;
    }
    input, select {
      padding: 8px;
      border: 2px solid #7a007a;
      border-radius: 5px;
      background-color: #300040;
      color: #ffe6ff;
      font-size: 1em;
    }
    button {
      padding: 10px 20px;
      background-color: #550077;
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      font-size: 1.2em;
      margin-top: 10px;
      transition: background-color 0.3s, transform 0.2s;
    }
    button:hover {
      background-color: #7700aa;
      transform: scale(1.1);
    }
    .card {
      font-size: 1.5em;
      font-weight: bold;
      margin: 15px 0;
      color: #ffd1ff;
      text-shadow: 0 0 5px #ff99ff;
    }
    .card img {
      display: block;
      margin: 10px auto;
      max-width: 100%;
      height: auto;
      border: 2px solid #ffe6ff;
      border-radius: 10px;
    }
    #result {
      display: none;
      margin-top: 20px;
    }
    footer {
      margin-top: 20px;
      font-size: 0.9em;
    }
    footer a {
      color: #ffccff;
      text-decoration: none;
    }
    footer a:hover {
      text-decoration: underline;
    }
	  /* Modal Styles */
    #overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.7);
      display: none;
      justify-content: center;
      align-items: center;
    }

    #modalContent {
      background-color: #1e0035;
      padding: 30px;
      border-radius: 10px;
      width: 80%;
      max-width: 600px;
      color: #f8e1ff;
    }

    #modalContent table {
      width: 100%;
      margin-top: 20px;
      border-collapse: collapse;
    }

    #modalContent th, #modalContent td {
      padding: 10px;
      text-align: left;
      border-bottom: 1px solid #f8e1ff;
    }

    #modalContent th {
      background-color: #550077;
    }

    .close-btn {
      background-color: #7700aa;
      color: white;
      border: none;
      padding: 10px;
      font-size: 1em;
      border-radius: 5px;
      cursor: pointer;
      margin-top: 20px;
      text-align: center;
    }
    
