.notifications-container{
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 3000;
    pointer-events: none;
    max-width: min(520px, 92vw);
}

.notification-card{
    pointer-events: auto;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 14px;
    background: #2a2a2a;
    border: 1px solid var(--border-color);
    color: #fff;
    box-shadow: 0 10px 24px rgba(0,0,0,0.35);
    width: 420px;
    min-height: 78px;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 3s ease, transform 0.2s ease;
    cursor: pointer;
}

.notification-card.fade{
    opacity: 0;
}

.notification-avatar{
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    flex: 0 0 54px;
}

.notification-body{
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.notification-title{
    font-weight: 600;
    font-size: 18px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notification-text{
    font-size: 15px;
    color: #d0d0d0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
