body {
    margin: 0;
    padding: 0;
    background: transparent !important;
    font-family: "Segoe UI", "Roboto", sans-serif;
    user-select: none;
    overflow: hidden;
}

/* Container unten mittig */
#notifications {
    position: absolute;
    bottom: 6%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 9999;
}

/* Notification-Box – kompakt wie auf deinem Screenshot */
.notify {
    position: relative;
    display: flex;
    align-items: flex-start;
    background: rgba(0, 0, 0, 0.700);
    border-radius: 4px;
    padding: 8px 16px 8px 42px;
    min-width: 280px;
    max-width: 340px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.45);
    opacity: 0; /* wird per .show eingeblendet */
    text-align: left;
    overflow-wrap: break-word;
    word-wrap: break-word;
    animation: fadeInUp 0.25s ease-out forwards;
}

/* gelber Balken rechts */
.notify::after {
    content: "";
    position: absolute;
    right: 0;
    top: 5px;
    bottom: 5px;
    width: 3px;
    border-radius: 2px;
    background: #ffc800;
}

/* gelber Kreis mit "!" links */
.notify-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ffc800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    color: #1a1a1a;
}

/* Text, darf umbrechen */
.notify-text {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    word-break: break-word;
}

/* Ein-/Ausblend-Animationen */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 10px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeOutDown {
    from {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
    to {
        opacity: 0;
        transform: translate3d(0, 10px, 0);
    }
}

.notify.show {
    opacity: 1;
}

.notify.hide {
    animation: fadeOutDown 0.25s ease-in forwards;
}
