/* ---------- Container & Grundlayout ---------- */
.sumboost-ai-container {
    margin: 1em 0;
    padding: 1em;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    background: #f8f9fa;
    display: flex;
    gap: 0.5em;
    align-items: center;
    flex-wrap: wrap;
}

.sumboost-ai-container h4 {
    margin: 0;
    font-size: 1.1em;
    color: #333;
    flex-basis: 100%;
}

/* ---------- Basisschaltflächen ---------- */
.sumboost-ai-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    transition: all 0.15s ease;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    position: relative;
}

.sumboost-ai-button .dashicons {
    font-size: 18px;
    line-height: 1;
}

.sumboost-ai-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.sumboost-ai-button:hover::after {
    opacity: 1;
    transform: translate(-50%, -120%);
}

.sumboost-ai-button::after {
    content: attr(title);
    position: absolute;
    left: 50%;
    bottom: 100%;
    transform: translate(-50%, -10%);
    white-space: nowrap;
    pointer-events: none;
    background: rgba(0,0,0,0.8);
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    opacity: 0;
    transition: all 0.15s ease;
    z-index: 1;
}

/* ---------- Stilvariante „full buttons“ ---------- */
.sumboost-ai-container.full-buttons .sumboost-ai-button {
    border-radius: 6px;
    padding: 0.8em 1.5em;
    width: auto;
    height: auto;
    gap: 0.8em;
}

.sumboost-ai-container.full-buttons .sumboost-ai-button .dashicons {
    margin-right: 0;
}

.sumboost-ai-container.full-buttons .sumboost-ai-button span:not(.dashicons) {
    font-weight: 500;
}

/* ---------- Bestehende Dienste ---------- */
.sumboost-ai-chatgpt        { background-color: #10a37f; }
.sumboost-ai-chatgpt:hover  { background-color: #0e8c6e; }

.sumboost-ai-perplexity     { background-color: #5436da; }
.sumboost-ai-perplexity:hover{ background-color: #4526c4; }

.sumboost-ai-claude         { background-color: #000000; }
.sumboost-ai-claude:hover   { background-color: #333333; }

/* ---------- Neue Dienste ---------- */
/* ========== Bluesky ========== */
.sumboost-ai-bluesky        { background: #0085ff; }
.sumboost-ai-bluesky:hover  { background: #006ad4; }

/* ========== Facebook ========== */
.sumboost-ai-facebook       { background: #0866ff; }
.sumboost-ai-facebook:hover { background: #0655d1; }

/* ========== LinkedIn ========== */
.sumboost-ai-linkedin       { background: #0077b5; }
.sumboost-ai-linkedin:hover { background: #005f8f; }

/* ========== WhatsApp ========== */
.sumboost-ai-whatsapp       { background: #25d366; }
.sumboost-ai-whatsapp:hover { background: #1ea654; }


/* ========== Gemini ========== */
.sumboost-ai-gemini        { background: #1a73e8; }
.sumboost-ai-gemini:hover  { background: #1669c1; }
