/* Notes / Bemerkungen */
.note-box {
    border-left: 4px solid #007BFF; /* Blau, kannst du ändern */
    background-color: #f0f8ff; /* Helles Blau als Hintergrund */
    padding: 10px 15px;
    margin: 10px 0;
    position: relative;
    font-style: italic;
}

.note-box::before {
    content: "\1F4D6"; /* Buch-Icon als Symbol für Note */
    position: absolute;
    left: 10px;
    top: 10px;
    font-size: 16px;
}
