/* Simple Notyf CSS */
.simple-notyf-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 999999;
    max-width: 300px;
}

.simple-notyf-notification {
    background-color: #2196F3;
    color: white;
    padding: 15px 20px;
    border-radius: 4px;
    margin-bottom: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    animation: notyfSlideIn 0.3s ease;
    font-family: Tahoma, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.4;
}

.simple-notyf-notification.success {
    background-color: #4CAF50;
}

.simple-notyf-notification.error {
    background-color: #F44336;
}

.simple-notyf-notification.info {
    background-color: #2196F3;
}

.simple-notyf-notification.warning {
    background-color: #FF9800;
}

@keyframes notyfSlideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes notyfSlideOut {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(100%); opacity: 0; }
}