#nce-notification-container {
    position: fixed;
    bottom: 20px;
    z-index: 9999;
}

#nce-notification-container.position-left {
    left: 20px;
    right: auto;
}

#nce-notification-container.position-right {
    left: auto;
    right: 20px;
}

.nce-notification {
    background-color: #1e1e1e;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    max-width: 400px;
    color: white;
    position: relative;
}

.nce-notification img {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    border-radius: 4px;
}

.nce-notification-content {
    flex-grow: 1;
}

.nce-notification p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.nce-notification .time {
    font-size: 12px;
    color: #a0a0a0;
    margin-top: 3px;
}

.nce-notification-progress {
    height: 3px;
    background-color: #3a3a3a;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.nce-notification-progress-bar {
    height: 100%;
    background-color: #0078d4;
    width: 0;
}