/* 
 * Notification Styles
 */

.kch-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 99999;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    transform: translateX(400px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 400px;
}

.kch-notification.show {
    transform: translateX(0);
}

.kch-notification-success {
    background: #4CAF50;
    color: white;
}

.kch-notification-error {
    background: #F44336;
    color: white;
}

.kch-notification-warning {
    background: #FFA726;
    color: white;
}

.kch-notification-info {
    background: #2196F3;
    color: white;
}

.kch-notification::before {
    content: '';
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.kch-notification-success::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    font-weight: 700;
}

.kch-notification-error::before {
    content: '✕';
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    font-weight: 700;
}

.kch-notification-warning::before {
    content: '!';
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    font-weight: 700;
}

/* Mobile Responsive Notifications */
@media (max-width: 640px) {
    .kch-notification {
        left: 20px;
        right: 20px;
        max-width: none;
        transform: translateY(-100px);
    }
    
    .kch-notification.show {
        transform: translateY(0);
    }
}
