.notifications-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 500px;
    min-width: min(100%, 300px);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1000;
    gap: 10px;
}

.notification {
    height: 40px;
    width: 100%;
    display: flex;
    background-color: rgb(74, 74, 74);
    border-radius: 9999px;
    transform: translateY(-100%);
    transition: transform 0.2s ease-out, opacity 0.2s;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    justify-content: center;
    align-items: center;
    opacity: 0;
    font-weight: 400;
}

.notification.show {
    transform: translateY(0);
    opacity: 1;
}

.notification.success { background: #4CAF50; }
.notification.error { background: #f44336; }
.notification.warning { background: #ff9800; }
.notification.info { background: #2196F3; }