/* Custom Notification Styles */
.custom-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    max-width: 400px;
    min-width: 300px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-left: 4px solid #007bff;
    animation: slideInRight 0.3s ease-out;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.custom-notification-success {
    border-left-color: #28a745;
}

.custom-notification-error {
    border-left-color: #dc3545;
}

.custom-notification-info {
    border-left-color: #17a2b8;
}

.notification-content {
    display: flex;
    align-items: flex-start;
    padding: 16px;
    gap: 12px;
}

.notification-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f8f9fa;
}

.custom-notification-success .notification-icon {
    background: #d4edda;
    color: #28a745;
}

.custom-notification-error .notification-icon {
    background: #f8d7da;
    color: #dc3545;
}

.custom-notification-info .notification-icon {
    background: #d1ecf1;
    color: #17a2b8;
}

.notification-icon i {
    font-size: 14px;
}

.notification-text {
    flex: 1;
    min-width: 0;
}

.notification-text h4 {
    margin: 0 0 4px 0;
    font-size: 16px;
    font-weight: 600;
    color: #212529;
    line-height: 1.2;
}

.notification-text p {
    margin: 0;
    font-size: 14px;
    color: #6c757d;
    line-height: 1.4;
}

.notification-close {
    flex-shrink: 0;
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-close:hover {
    background: #f8f9fa;
    color: #495057;
}

.notification-close i {
    font-size: 12px;
}

/* Animation */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

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

.custom-notification.hide {
    animation: slideOutRight 0.3s ease-in forwards;
}

/* Responsive */
@media (max-width: 768px) {
    .custom-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        min-width: auto;
    }
    
    .notification-content {
        padding: 12px;
        gap: 10px;
    }
    
    .notification-text h4 {
        font-size: 15px;
    }
    
    .notification-text p {
        font-size: 13px;
    }
}
