/* ai summary buttons - styly pro zobrazeni AI tlacitek */

.ai-summary-buttons-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    align-items: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.ai-summary-label {
    margin: 0;
    font-weight: 600;
    font-size: 0.95rem;
    color: #333;
    display: flex;
    align-items: center;
    line-height: 1;
}

/* prebiti stylu z .entry .entry-content p - stejná specificita jako theme */
.entry-content .ai-summary-buttons-wrapper .ai-summary-label {
    margin: 0;
}

.ai-summary-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.ai-summary-button:hover {
    background: #f8f9fa;
    border-color: #1c85f4;
    color: #1c85f4;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.ai-summary-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
}

.ai-summary-icon svg {
    width: 100%;
    height: 100%;
}

.ai-summary-text {
    line-height: 1;
}

/* responzivita pro mobilni zarizeni */
@media (max-width: 768px) {
    .ai-summary-buttons-wrapper {
        gap: 0.4rem;
    }

    .ai-summary-button {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
}