/* Container für die Share-Buttons */
.share-donation-buttons
{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
    width: 100%;
}

/* Überschrift */
.share-donation-buttons h4
{
    color: var(--tpe-light-color);
    margin-bottom: 10px;
    text-align: center;
}

/* Stil für alle Share-Buttons */
.share-donation-buttons .share-button
{
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Stil für Links (a-Tags) und Buttons */
.share-donation-buttons a,
.share-donation-buttons button
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 80px;
    padding: 10px;
    background: var(--tpe-base-color);
    border: 1px solid var(--tpe-base-color);
    border-radius: 8px;
    text-decoration: none !important;
    color: var(--tpe-light-color);
    font-size: 12px;
    text-align: center;
    transition: all 0.2s ease;
    box-sizing: border-box;
    white-space: normal;
    word-break: break-word;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.1)); /* Minimaler dauerhafter Schatten */
}

/* Hover-Effekt für Links und Buttons */
.share-donation-buttons a:hover,
.share-donation-buttons button:hover
{
    background: var(--tpe-second-color);
    border-color: var(--tpe-second-color);
    color: var(--tpe-light-color); /* Textfarbe bleibt --tpe-light-color */
    filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.15)); /* Leichter verstärkter Schatten im Hover */
}

/* Icon-Stil */
.share-donation-buttons a i,
.share-donation-buttons button i
{
    font-size: 24px;
    margin-bottom: 5px;
    color: var(--tpe-light-color);
    transition: color 0.2s ease;
}

/* Responsive Anpassungen für kleine Bildschirme */
@media (max-width: 600px)
{
    .share-donation-buttons
    {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }

    .share-donation-buttons a,
    .share-donation-buttons button
    {
        min-height: 70px;
        font-size: 11px;
    }

    .share-donation-buttons a i,
    .share-donation-buttons button i
    {
        font-size: 20px;
    }
}