.footer-links {
    margin: 20px !important; /* Abstand über und unter den Links */
}

.footer-links a {
    text-decoration: none; /* Unterstrich entfernen */
    color: #ff8b2d; /* Farbe für den Link (Orange) */
    font-size: 18px; /* Schriftgröße */
    padding: 10px 15px; /* Innenabstand für einen größeren Klickbereich */
    border-radius: 5px; /* Abgerundete Ecken */
    transition: background-color 0.3s ease, color 0.3s ease; /* Übergangseffekte für Hover */
}

.footer-links a:hover {
    background-color: rgba(255, 139, 45, 0.1); /* Leichte Hintergrundfarbe bei Hover */
    color: #000; /* Textfarbe bei Hover */
}


.popup {
    display: none; /* Standardmäßig versteckt */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5); /* Hintergrund mit Transparenz */
	color: #454545;
}

.popup-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% vom oberen Rand und zentriert */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Breite */
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
