/* Share Box Design - Dark Mode Style */
.share-box-wrapper {
    margin: 4rem 0 2rem 0;
    font-family: 'Inter', sans-serif;
}

.share-box {
    background-color: #1e1e1e; /* Dunkler Hintergrund wie im Screenshot */
    color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #4CAF50; /* Grüner Akzent-Strich links */
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.share-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.5rem;
}

.share-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff !important; /* Erzwingt Weiß, überschreibt Artikel-Styles */
}

.share-header i {
    font-size: 1.2rem;
}

.share-text {
    color: #b0b0b0 !important; /* Helles Grau für den Untertitel */
    margin-bottom: 1.5rem !important;
    font-size: 1rem !important;
}

/* Button Grid */
.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Basis Button Style */
.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 0.95rem;
    color: #fff !important;
    transition: transform 0.2s, opacity 0.2s;
    border: none;
    cursor: pointer;
    line-height: 1.2;
}

.share-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
    color: #fff !important;
}

.share-btn i {
    font-size: 1.1rem;
}

/* Spezifische Farben */
.btn-copy {
    background-color: #333333; /* Dunkelgrau */
}

.btn-facebook {
    background-color: #1877F2; /* Facebook Blau */
}

.btn-email {
    background-color: #EA4335; /* Email Rot/Orange */
}

.btn-whatsapp {
    background-color: #25D366; /* WhatsApp Grün */
}

/* Mobile Anpassung */
@media (max-width: 600px) {
    .share-buttons {
        flex-direction: column;
    }
    .share-btn {
        width: 100%;
        justify-content: flex-start;
    }
}

/* Toast Nachricht beim Kopieren */
.copy-toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 10000;
}

.copy-toast.show {
    opacity: 1;
}