/* Custom Notification Styles */

.custom-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #212121;
    border: 1px solid #303030;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    z-index: 10000;
    min-width: 300px;
    max-width: 500px;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    cursor: pointer;
}

.custom-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
}

.notification-content i {
    font-size: 20px;
    flex-shrink: 0;
}

.notification-content span {
    font-size: 14px;
    line-height: 1.5;
}

/* Success notification */
.custom-notification-success {
    border-left: 4px solid #4ade80;
}

.custom-notification-success .notification-content i {
    color: #4ade80;
}

/* Error notification */
.custom-notification-error {
    border-left: 4px solid #ff4444;
}

.custom-notification-error .notification-content i {
    color: #ff4444;
}

/* Warning notification */
.custom-notification-warning {
    border-left: 4px solid #ffaa00;
}

.custom-notification-warning .notification-content i {
    color: #ffaa00;
}

/* Info notification */
.custom-notification-info {
    border-left: 4px solid #667eea;
}

.custom-notification-info .notification-content i {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .custom-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: none;
        transform: translateY(-100px);
    }
    
    .custom-notification.show {
        transform: translateY(0);
    }
}
