.gemini-prompt-form {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.gemini-prompt-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 15px;
    font-size: 16px;
    resize: vertical;
}

.gemini-prompt-form button {
    background: #2271b1;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.gemini-prompt-form button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.gemini-prompt-form button:hover:not(:disabled) {
    background: #135e96;
}

.result-box {
    margin-top: 20px;
    padding: 15px;
    border-radius: 4px;
}

.prompt-result {
    background: white;
    padding: 15px;
    border-radius: 4px;
    border-left: 4px solid #2271b1;
}

.prompt-result h4 {
    margin: 0 0 10px 0;
    color: #1d2327;
}

.error {
    color: #dc3232;
    font-weight: 500;
    padding: 10px;
    background: #fbeaea;
    border-radius: 4px;
}

.loading {
    color: #666;
    font-style: italic;
    padding: 10px;
    text-align: center;
}

.copy-button {
    margin-top: 10px;
    background: #f0f0f1 !important;
    color: #2c3338 !important;
    border: 1px solid #c3c4c7 !important;
}

.copy-button:hover {
    background: #e5e5e5 !important;
}