/* ================================================================
   em_share.css – Einachser-Marktplatz
   Einheitliches Aussehen der Teilen-Leiste (em_share.php).
   Einbinden im <head> mit:
   <link rel="stylesheet" href="em_share.css">
   ================================================================ */

.em-teilen-leiste {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 14px 0 4px;
}

.em-teilen-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 16px;
    border-radius: 20px;
    border: none;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s;
    position: relative;
}

.em-teilen-btn:hover { opacity: 0.85; }

.em-share-nativ    { background: #555;     color: white; }
.em-share-whatsapp  { background: #25D366; color: white; }
.em-share-facebook  { background: #1877F2; color: white; }
.em-share-x         { background: #000000; color: white; }
.em-share-threads   { background: #222222; color: white; }
.em-share-telegram  { background: #229ED9; color: white; }
.em-share-email     { background: #6c757d; color: white; }
.em-share-copy      { background: #fce4ec; color: #b71c1c; border: 1px solid #ef9a9a; }

.em-teilen-kopiert {
    font-size: 12px;
    color: #b71c1c;
    font-weight: 700;
    display: none;
    margin-left: 4px;
}

@media (max-width: 480px) {
    .em-teilen-btn { padding: 8px 13px; font-size: 12px; }
}
