.ringerdb-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10px;
    background-color: #f1f1f1;
    font-size: 14px;
    color: #333;
    margin-top: 20px;
}

.ringerdb-logo-text p {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ringerdb-info-text p {
    margin: 0;
    margin-top: 5px; /* Abstand zwischen den beiden Zeilen */
    font-size: 0.8em;
}

.ringerdb-logo-container {
    display: flex;
    align-items: center;
}

.ringerdb-logo {
    height: 30px;
    transition: transform 0.3s ease; /* Übergangseffekt */
    margin-left: 5px;
}

/* Hover-Effekt für das Logo */
.ringerdb-logo-link:hover .ringerdb-logo {
    transform: scale(0.9); /* Vergrößert das Logo leicht beim Hover */
    text-decoration: underline !important;
}

.ringerdb-footer a {
    color: #0067b4;
    text-decoration: none;
}

.ringerdb-footer a:hover {
    text-decoration: underline !important;
}