    body {
      font-family: 'Arial', sans-serif;
      padding: 20px;
    }

    label {
      display: block;
      margin-bottom: 10px;
    }

    .label2 {
      display: block;
      margin-top: -5px;
      font-size: 12px;
    }

    input {
      width: 10%;
      padding: 5px;
      font-size: 16px;
      margin-bottom: 10px;
    }

    input:hover {
      border-color: #0076ff;
    }

    .select-wrapper {
      position: relative;
      display: inline-block;
      width: 20%;
    }

    select {
      width: 100%;
      padding: 5px;
      font-size: 16px;
      margin-bottom: 10px;
      appearance: none;
      background-color: #ffffff;
      border: 1px solid #ccc;
      border-radius: 4px;
      cursor: pointer;
    }

    select:hover {
      border-color: #0076ff;
    }

    select:focus {
      outline: none;
      border-color: #0076ff;
    }


    button {
      padding: 10px 20px;
      font-size: 16px;
      background-color: #0076ff;
      color: #fff;
      border: none;
      cursor: pointer;
      margin-top: -5px;
    }

    textarea {
      width: 100%;
      min-height: 400px;
      font-size: 16px;
      padding: 10px;
    }

    .input-pair {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
      width: calc(50%);
    }

    .input-pair label {
      display: block;
      width: 150px;
    }

    .input-pair input {
      width: 200px;
    }

    #colorDisplay {
      width: 100px;
      height: 30px;
      border: 1px solid #000;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: Arial, sans-serif;
      color: #FFF;
    }

    .color-row {
      display: flex;
      align-items: center;
      gap: 10px;
    }
