/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

 body {
    font-family: "Inter", Arial, sans-serif;
    margin: 0;
    padding: 15px;
    background: linear-gradient(120deg, #ffe9f3, #e3f2ff);
    min-height: 100vh;
  }

  h1 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 2.3rem;
  }

  .container {
    max-width: 850px;
    margin: auto;
  }

  .card {
    background: white;
    padding: 22px;
    margin-bottom: 25px;
    border-radius: 18px;
    box-shadow: 0px 8px 18px rgba(0,0,0,0.08);
    backdrop-filter: blur(10px);
  }

  .card h2 {
    font-family: "Inter", sans-serif;
    margin-top: 0;
    font-weight: 600;
    color: #444;
  }

  input, select {
    padding: 12px;
    width: 100%;
    max-width: 220px;
    border-radius: 10px;
    border: 1px solid #ddd;
  }

  button {
    padding: 12px 18px;
    background: #ff8acb;
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.2s;
    width: 100%;
    max-width: 220px;
  }

  button:hover {
    background: #ff5fb2;
  }

  .btn-secondary {
    background: #8ab6ff;
  }

  .btn-secondary:hover {
    background: #599aff;
  }

  .flex {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }

  canvas {
    margin-top: 20px;
    width: 100% !important;
    height: auto !important;
  }

  @media (max-width: 600px) {
    input, select, button {
      max-width: 100%;
    }
  }