/* Export Notification System Styles */
/* Facebook-style persistent notifications */

.export-notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 420px;
    pointer-events: none;
}

.export-notification {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 350px;
    max-width: 420px;
    pointer-events: auto;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid;
}

.export-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.export-notification.dismiss {
    opacity: 0;
    transform: translateX(100%);
}

/* Notification Types */
.export-notification-success {
    border-left-color: #42b883;
}

.export-notification-warning {
    border-left-color: #ffa726;
}

.export-notification-error {
    border-left-color: #ef4444;
}

/* Icon */
.export-notification-icon {
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.export-notification-success .export-notification-icon {
    color: #42b883;
    background: rgba(66, 184, 131, 0.1);
}

.export-notification-warning .export-notification-icon {
    color: #ffa726;
    background: rgba(255, 167, 38, 0.1);
}

.export-notification-error .export-notification-icon {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

/* Content */
.export-notification-content {
    flex: 1;
    min-width: 0;
}

.export-notification-message {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.4;
    margin-bottom: 4px;
}

.export-notification-details {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.4;
}

/* Actions */
.export-notification-actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
}

.export-notification-btn {
    padding: 6px 12px;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    flex: 1;
}

.export-notification-btn-dismiss {
    background: #f3f4f6;
    color: #374151;
}

.export-notification-btn-dismiss:hover {
    background: #e5e7eb;
}

.export-notification-btn-success {
    background: #42b883;
    color: white;
}

.export-notification-btn-success:hover {
    background: #3aa876;
}

.export-notification-btn-warning {
    background: #ffa726;
    color: white;
}

.export-notification-btn-warning:hover {
    background: #f5951f;
}

.export-notification-btn-error {
    background: #ef4444;
    color: white;
}

.export-notification-btn-error:hover {
    background: #dc2626;
}

.export-notification-btn-details {
    background: #3b82f6;
    color: white;
}

.export-notification-btn-details:hover {
    background: #2563eb;
}

.export-notification-btn-retry {
    background: #8b5cf6;
    color: white;
}

.export-notification-btn-retry:hover {
    background: #7c3aed;
}

/* Close Button */
.export-notification-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
    border: none;
    background: transparent;
    color: #9ca3af;
    font-size: 20px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    padding: 0;
}

.export-notification-close:hover {
    background: #f3f4f6;
    color: #374151;
}

/* Responsive */
@media (max-width: 768px) {
    .export-notification-container {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }

    .export-notification {
        min-width: auto;
        max-width: none;
    }
}

/* Animation for multiple notifications */
.export-notification-container .export-notification:nth-child(1) {
    animation-delay: 0ms;
}

.export-notification-container .export-notification:nth-child(2) {
    animation-delay: 100ms;
}

.export-notification-container .export-notification:nth-child(3) {
    animation-delay: 200ms;
}
