<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * PIM System - Notification Styles
 */

/* Notification Container */
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    max-width: 400px;
}

/* Basic Notification (legacy) */
.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #333;
    color: white;
    padding: 15px 20px;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.3s, transform 0.3s;
    z-index: 1000;
    max-width: 300px;
}

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

/* Enhanced Notifications */
.notification-container .notification {
    position: relative;
    display: flex;
    align-items: center;
    background-color: #fff;
    border-left: 4px solid #2196F3;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    max-width: 100%;
    opacity: 0;
    padding: 12px 15px;
    transform: translateX(50px);
    transition: opacity 0.3s, transform 0.3s;
    width: 350px;
    bottom: auto;
    right: auto;
}

.notification-visible {
    opacity: 1;
    transform: translateX(0) !important;
}

.notification-hiding {
    opacity: 0;
    transform: translateX(50px) !important;
}

/* Notification Types */
.notification-success {
    border-left-color: #4CAF50 !important;
}

.notification-error {
    border-left-color: #F44336 !important;
}

.notification-warning {
    border-left-color: #FFC107 !important;
}

.notification-info {
    border-left-color: #2196F3 !important;
}

/* Notification Parts */
.notification-icon {
    flex-shrink: 0;
    font-size: 20px;
    margin-right: 12px;
}

.notification-success .notification-icon {
    color: #4CAF50;
}

.notification-error .notification-icon {
    color: #F44336;
}

.notification-warning .notification-icon {
    color: #FFC107;
}

.notification-info .notification-icon {
    color: #2196F3;
}

.notification-message {
    flex-grow: 1;
    font-size: 14px;
    line-height: 1.4;
    color: #333;
}

.notification-close {
    cursor: pointer;
    flex-shrink: 0;
    font-size: 16px;
    margin-left: 12px;
    opacity: 0.5;
    transition: opacity 0.2s;
    color: #333;
}

.notification-close:hover {
    opacity: 1;
}

/* Loading Overlay */
.loading-overlay {
    align-items: center;
    background-color: rgba(255, 255, 255, 0.8);
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    right: 0;
    top: 0;
    transition: opacity 0.3s;
    z-index: 9999;
}

.loading-visible {
    opacity: 1;
    pointer-events: all;
}

.loading-spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left: 4px solid #2196F3;
    border-radius: 50%;
    height: 50px;
    margin-bottom: 15px;
    width: 50px;
    animation: spin 1s linear infinite;
}

.loading-message {
    color: #333;
    font-size: 16px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/**
 * Field warning style
 */
.field-warning {
    color: #d9534f;
    font-size: 0.8em;
    margin-top: 5px;
    display: none;
}
</pre></body></html>