.aipe-frontend-wrap {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background: #f5f5f5;
    border-radius: 10px;
}

.aipe-frontend-wrap textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}

.aipe-frontend-wrap select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    box-sizing: border-box;
}

.aipe-frontend-wrap button {
    width: 100%;
    padding: 15px;
    background: #2271b1;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.aipe-frontend-wrap button:hover {
    background: #135e96;
}

.aipe-frontend-wrap button:disabled {
    background: #999;
    cursor: wait;
}

#aipe-frontend-result {
    margin-top: 20px;
}

#aipe-frontend-output {
    background: #fff;
    border: 2px solid #28a745;
}