.c_notification-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 350px;
    max-height: 400px;
    overflow-y: hidden;
    z-index: 1000;
    pointer-events: none;
}

.c_notification {
    background: var(--background_color_alt);
    color: var(--text_color_strong);
    padding: 12px;
    margin: 8px 0;
    border-radius: 10px;
    box-shadow: 4px 4px 4px rgba(37, 37, 37, 0.15);
    font-size: 14px;
    opacity: 0;
    transform: translateY(30px);
    animation: c_fadeIn 1s forwards;
}

@keyframes c_fadeIn {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes c_fadeOut {
    to { opacity: 0; }
}