body{

}

.notice-card {
    background-color: #dc3545; /* Roter Hintergrund (ähnlich bg-danger) */
    color: white;
    text-align: center;
    padding: 1rem;
    border-radius: 0.5rem;
    max-width: 100%;
    margin: 1rem auto;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.notice-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0.5rem 0;
}

.notice-text {
    font-size: 1rem;
    margin: 0.5rem 0;
}

.notice-date {
    display: inline;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Responsive Anpassungen */
@media (max-width: 600px) {
    .notice-title {
        font-size: 1.5rem;
    }
    .notice-text {
        font-size: 0.9rem;
    }
    .notice-date {
        font-size: 1rem;
    }
    .notice-card {
        padding: 0.75rem;
    }
}