/* Default CSS */
/* Generated by the CoffeeCup HTML Editor - www.coffeecup.com */

  body {
      font-family: Arial, sans-serif;
      background: #f7f9fc;
      color: #333;
      margin: 0;
      padding: 20px;
      display: flex;
      justify-content: center;
    }
    .container {
      max-width: 850px;
      width: 100%;
      background: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    }
    h1 {
      text-align: center;
      color: #0a3d62;
    }
    label {
      display: block;
      margin-top: 20px;
      font-weight: bold;
    }
    select, input {
      width: 100%;
      padding: 10px;
      margin-top: 6px;
      border-radius: 4px;
      border: 1px solid #ccc;
      font-size: 1rem;
    }
    button {
      margin-top: 30px;
      padding: 12px;
      background-color: #0a3d62;
      color: white;
      border: none;
      font-size: 1rem;
      border-radius: 4px;
      cursor: pointer;
      width: 100%;
    }
    button:hover {
      background-color: #1e5c93;
    }
    .output {
      margin-top: 30px;
      padding: 20px;
      background: #eef4fb;
      border-left: 5px solid #0a3d62;
    }
    canvas {
      margin-top: 30px;
    }
	input[type="text"], select {
      width: 100%;
      box-sizing: border-box;
    }