
        body {
            margin: 0;
            padding: 0;
            font-family: 'Roboto', sans-serif;
        }

        .container {
            max-width: 480px;
            margin: 50px auto;
            padding: 20px;
            background-color: #f4f4f4;
            border-radius: 5px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .color-preview {
            margin-top: 20px;
            width: auto;
            height: 100px;
            margin-bottom: 15px;
            border-radius: 5px;
            border: 1px solid #000;
        }

        .box {
            margin-bottom: 20px;
            padding: 10px;
            background-color: #fff;
            border: 1px solid #ccc;
            border-radius: 5px;
        }

        .box input[type="text"] {
            width: calc(100% - 10px);
            margin-bottom: 10px;
            padding: 5px;
            border: 1px solid #ccc;
            border-radius: 3px;
            font-size: 14px;
        }

        .copy-button {
            width: 60px;
            padding: 5px;
            margin: 0;
            border: none;
            border-radius: 3px;
            background-color: #4CAF50;
            color: white;
            cursor: pointer;
        }

        .color-picker-container {
            display: inline-block;
            border: 2px solid #ccc;
            border-radius: 5px;
            /* padding: 5px; */
            cursor: pointer;
        }

        .color-picker-container input[type="color"] {
            width: 100%;
            /* Make the color picker fill the container horizontally */
            height: 30px;
            /* Adjust the height as needed */
            padding: 0;
            margin: 0;
            border: none;
            border-radius: 3px;
        }

        .copy-text {
            display: none;
        }
        .header {
          color: #fff;
          text-align: center;
          padding: 20px 0;
          background: linear-gradient(to bottom right, #0B9866 0%, #1b6c1c 100%);
        }
        
        .header h1 {
          margin: 0;
        }
        
        .footer {
          /* background-color: #333; */
          background: linear-gradient(to bottom right, #0B9866 0%, #1b6c1c 100%);
          color: #fff;
          text-align: center;
          padding: 10px 0;
          /* position: fixed; */
          bottom: 0;
          width: 100%;
          margin-top: 50px;
        }
        p{
          line-height: 1.7em;
        }
        code {
          color: #0B9866;
          font-size: 15px;
          box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
      }