/* Basis-Design für deinen Button */
.footer-cookie-settings button{
    background-color: var(--permagrau) !important;     /* Hintergrundfarbe */
    color: #fff;                   /* Textfarbe */
    padding: 10px 20px;            /* Innenabstand */
    border: none;                  /* keine Rahmenlinie */
    border-radius: 8px;            /* abgerundete Ecken */
    font-size: 16px;               /* Schriftgröße */
    font-weight: bold;             /* fett */
    cursor: pointer;               /* Zeiger-Hand bei Hover */
    transition: background-color 0.3s ease, transform 0.2s ease;
    background-image: none !important;
}

/* Hover-Effekt */
.footer-cookie-settings button:hover {
    background-color: #e05500;     /* dunkleres Orange */
    transform: scale(1.05);        /* leichtes Vergrößern */
}

/* Optional: Fokus-Stil für Barrierefreiheit */
.footer-cookie-settings button:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

/* Wenn der Button als Link genutzt wird */
a..footer-cookie-settings button {
    display: inline-block;
    text-decoration: none;
}

.footer-cookie-settings {
    text-align: center;   /* Inhalt zentrieren */
    padding: 15px 0;      /* etwas Abstand nach oben/unten */
}
