#notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    max-width: 350px;
}

.nova-notification {
    background: rgb(255, 255, 255);
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
    opacity: 0;
    transform: translateX(100%);
    user-select: none;
}

.nova-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.nova-notification.hide {
    opacity: 0;
    transform: translateX(100%);
}

.nova-notification.success {
    border-left: 5px solid #2ecc71;
}

.nova-notification.error {
    border-left: 5px solid #e74c3c;
}

.nova-notification.warning {
    border-left: 5px solid #f39c12;
}

.nova-icon {
    font-size: 24px;
    line-height: 1;
}

.nova-notification.success .nova-icon {
    color: #2ecc71;
}

.nova-notification.error .nova-icon {
    color: #e74c3c;
}

.nova-content strong {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-size: 15px;
}

.nova-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.nova-content a {
    color: #4a8bc2;
    font-weight: bold;
    word-break: break-all;
}