        .form-group {
            margin-bottom: 24px;
        }

        label {
            display: block;
            margin-bottom: 8px;
            color: #333;
            font-weight: 600;
            font-size: 15px;
        }

        textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            min-height: 120px;
            resize: vertical;
            font-size: 15px;
            color: #666;
            background-color: #fff;
            box-sizing: border-box;
        }

        .select-wrapper {
            position: relative;
        }

        select {
            width: 100%;
            height: 50px;
            padding: 0 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 15px;
            color: #333;
            background-color: #fff;
            cursor: pointer;
            appearance: none;
            -webkit-appearance: none;
        }

        .select-wrapper::after {
            content: '';
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-left: 5px solid transparent;
            border-right: 5px solid transparent;
            border-top: 5px solid #333;
            pointer-events: none;
        }

        input[type="text"] {
            width: 100%;
            height: 50px;
            padding: 0 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 15px;
            color: #333;
            box-sizing: border-box;
        }

        .optional {
            color: #666;
            font-weight: normal;
            font-style: italic;
        }

        .note {
            margin: 10px 0;
            padding: 15px;
            background-color: #f8f8f8;
            border-radius: 4px;
            color: #666;
            font-size: 14px;
            line-height: 1.6;
        }

        .generate-btn {
            width: 100%;
            height: 50px;
            background: #000;
            color: #fff;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .generate-btn:hover {
            background: #333;
        }

        #output {
            margin-top: 20px;
            padding: 20px;
            min-height: 100px;
            background-color: #f8f8f8;
            border-radius: 4px;
            color: #333;
        }