.notice {
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
    border-left: 5px solid;
}

.notice p {
    margin: 0;
}

/* Info (Blau) */
.notice-info {
    background-color: #e7f3fe;
    border-left-color: #2196F3;
    color: #0c5460;
}

/* Warning (Gelb/Orange) */
.notice-warning {
    background-color: #fff4e5;
    border-left-color: #ff9800;
    color: #856404;
}

/* Error (Rot) */
.notice-error {
    background-color: #fdecea;
    border-left-color: #f44336;
    color: #721c24;
}

/* Success (Grün) */
.notice-success {
    background-color: #edf7ed;
    border-left-color: #4caf50;
    color: #155724;
}

/* Anpassung für den Dark Mode in PaperMod */
.dark .notice-info { background-color: rgba(33, 150, 243, 0.15); color: #e7f3fe; }
.dark .notice-warning { background-color: rgba(255, 152, 0, 0.15); color: #fff4e5; }
.dark .notice-error { background-color: rgba(244, 67, 54, 0.15); color: #fdecea; }
.dark .notice-success { background-color: rgba(76, 175, 80, 0.15); color: #edf7ed; }
