.success-message {
    background: #e6ffed;
    color: #2e7d32;
    border: 1px solid #2e7d32;
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
}
.error-message {
    background: #ffe6e6;
    color: #7d2e2e;
    border: 1px solid #7d2e2e;
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
}

.content p a {
    color: #007bff; /* Linkfarbe */
    text-decoration: none; /* Unterstreichung entfernen */
    transition: color 0.3s ease; /* Sanfter Farbwechsel bei Hover */
}

.content p a:hover {
    color: #0056b3; /* Linkfarbe bei Hover */
}