        .form-group {
            margin-bottom: 24px;
        }

        label {
            display: block;
            margin-bottom: 8px;
            color: #333;
            font-weight: 600;
            font-size: 15px;
        }

        select, textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 15px;
            color: #555;
            background-color: #fff;
            box-sizing: border-box;
        }

        select {
            height: 50px;
            appearance: none;
            -webkit-appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='6'%3E%3Cpath d='M0 0h12L6 6z' fill='%23333'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 15px center;
            background-size: 12px;
            cursor: pointer;
        }

        textarea {
            min-height: 100px;
            resize: vertical;
        }

        .generate-btn {
            width: 100%;
            padding: 15px;
            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: 200px;
            background-color: #f9f9f9;
            border-radius: 4px;
            white-space: pre-wrap;
        }

        .note {
            color: #666;
            font-size: 14px;
            margin-top: 8px;
            line-height: 1.4;
        }

        .italic {
            font-style: italic;
        }