/* =====================================================
   Zurück-Button – Bürgerverein Westerholt
   ===================================================== */

.zurueck-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 10px 20px;
    margin: 10px 0;

    background-color: #6b8e23;
    color: #ffffff !important;

    border: 1px solid #5f7d1f;
    border-radius: 6px;

    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    text-decoration: none !important;

    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.18);

    transition:
        background-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;

    cursor: pointer;
}

/* Pfeil */
.zurueck-button::before {
    content: "←";
    font-size: 20px;
    line-height: 1;
    font-weight: 400;
}

/* Maus darüber */
.zurueck-button:hover {
    background-color: #55731b;
    color: #ffffff !important;

    box-shadow: 0 4px 9px rgba(0, 0, 0, 0.22);

    transform: translateY(-1px);
}

/* Beim Anklicken */
.zurueck-button:active {
    background-color: #486218;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.18);

    transform: translateY(0);
}

/* Tastatur-Navigation */
.zurueck-button:focus-visible {
    outline: 3px solid rgba(107, 142, 35, 0.35);
    outline-offset: 3px;
}

/* Smartphone */
@media (max-width: 575px) {
    .zurueck-button {
        padding: 9px 17px;
        font-size: 15px;
        border-radius: 5px;
    }

    .zurueck-button::before {
        font-size: 19px;
    }
}