/* Container */
.trv-ai-share-container {
    margin: 20px 0;
    padding: 15px;
    background: #f9f9f9;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
}

.trv-ai-share-title {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.trv-ai-share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Buttons */
.trv-ai-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* Center content */
    gap: 8px;
    padding: 8px 16px;
    text-decoration: none !important;
    /* Force no underline */
    color: white !important;
    border-radius: 4px;
    font-weight: 500;
    transition: opacity 0.2s;
    font-size: 14px;
    line-height: 1;
    flex: 1;
    /* Make buttons equal width */
    min-width: 140px;
    /* Prevent becoming too narrow */
    box-shadow: none !important;
    border-bottom: none !important;
}

.trv-ai-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
    flex-shrink: 0;
}

.trv-ai-btn:hover {
    opacity: 0.9;
    text-decoration: none !important;
}

/* Platform Colors */
.trv-ai-chatgpt {
    background-color: #74aa9c;
    /* OpenAI Greenish */
}

.trv-ai-perplexity {
    background-color: #22b8cf;
    /* Perplexity Cyan */
}

.trv-ai-claude {
    background-color: #d97757;
    /* Claude Orangeish */
}

.trv-ai-grok {
    background-color: #000000;
    /* X Black */
}