/* AI Prompt フロントエンド表示スタイル */
.ai-prompt-container {
    position: relative;
    background-color: #f8f6f6;
    border: 1px solid #dadce0;
    border-radius: 6px;
    padding: 20px 48px 20px 20px;
    margin: 2em 0;
    font-family: inherit;
}

.ai-prompt-content {
    font-size: 1.0em;
    color: #202124;
    line-height: 1.7;
    white-space: pre-wrap;
    word-break: break-word;
    overflow-wrap: break-word;
}

.ai-copy-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5f6368;
    transition: background-color 0.2s ease;
}

.ai-copy-btn:hover {
    background-color: #e8eaed;
    color: #202124;
}

.ai-copy-btn:focus {
    outline: 2px solid #1a73e8;
    outline-offset: 2px;
}
