        .container {
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
            font-family: Arial, sans-serif;
        }
        
        .input-group {
            margin-bottom: 20px;
        }
        
        .input-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
            color: #333;
        }
        
        .input-group input[type="text"],
        .input-group select,
        .input-group textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 14px;
            box-sizing: border-box;
        }
        
        .input-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        
        select {
            height: auto !important;
            padding: 10px !important;
        }
        
        #generate {
            width: 100%;
            padding: 12px;
            background-color: #9B4E7C;
            color: #fff;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        #generate:hover {
            background-color: #7E3B64;
        }
        
        #result {
            margin-top: 20px;
            padding: 20px;
            background-color: #f9f9f9;
            border-radius: 4px;
            white-space: pre-wrap;
            min-height: 200px;
        }

        .note {
            margin: 20px 0;
            padding: 15px;
            background-color: #FFF5F9;
            border-left: 4px solid #9B4E7C;
            color: #666;
        }

        /* Ensure dropdown shows all options */
        .input-group select {
            height: auto !important;
            max-height: none !important;
            overflow: visible !important;
        }

        /* Custom dropdown styling */
        .input-group select option {
            padding: 8px;
        }