/* Toast Notifications System - DISABLED */
.toast-container {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.toast {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast.hide {
    transform: translateX(100%);
    opacity: 0;
}

/* Toast Types */
.toast.success {
    border-left: 4px solid #34c759;
}

.toast.success .toast-icon {
    color: #34c759;
}

.toast.error {
    border-left: 4px solid #ff3b30;
}

.toast.error .toast-icon {
    color: #ff3b30;
}

.toast.warning {
    border-left: 4px solid #ff9500;
}

.toast.warning .toast-icon {
    color: #ff9500;
}

.toast.info {
    border-left: 4px solid #007aff;
}

.toast.info .toast-icon {
    color: #007aff;
}

/* Toast Icon */
.toast-icon {
    font-size: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

/* Toast Content */
.toast-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.toast-title {
    font-weight: 600;
    color: #1d1d1f;
    line-height: 1.3;
}

.toast-message {
    font-weight: 400;
    color: #86868b;
    line-height: 1.4;
    font-size: 13px;
}

/* Close Button */
.toast-close {
    background: none;
    border: none;
    color: #86868b;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s ease;
    font-size: 16px;
    line-height: 1;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #1d1d1f;
}

/* Progress Bar */
.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 0 0 12px 12px;
    overflow: hidden;
}

.toast-progress-bar {
    height: 100%;
    background: currentColor;
    width: 100%;
    transform: translateX(-100%);
    transition: transform linear;
}

.toast.success .toast-progress-bar {
    background: #34c759;
}

.toast.error .toast-progress-bar {
    background: #ff3b30;
}

.toast.warning .toast-progress-bar {
    background: #ff9500;
}

.toast.info .toast-progress-bar {
    background: #007aff;
}

/* Hover Effects */
.toast:hover {
    transform: translateX(-4px) scale(1.02);
    box-shadow: 
        0 0 0 0.5px rgba(255, 255, 255, 0.7) inset,
        0 0.5px 0 rgba(255, 255, 255, 0.9) inset,
        0 8px 32px rgba(0, 0, 0, 0.2),
        0 4px 16px rgba(0, 0, 0, 0.15);
}

.toast:hover .toast-progress-bar {
    animation-play-state: paused;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .toast-container {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .toast {
        padding: 14px 16px;
        min-height: 56px;
    }
    
    .toast-icon {
        font-size: 18px;
        width: 20px;
        height: 20px;
    }
    
    .toast-content {
        gap: 2px;
    }
    
    .toast-title {
        font-size: 14px;
    }
    
    .toast-message {
        font-size: 12px;
    }
    
    .toast-close {
        width: 20px;
        height: 20px;
        font-size: 14px;
    }
}

/* Animation Keyframes */
@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;
    }
}

@keyframes progressAnimation {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}


/* Accessibility */
.toast:focus {
    outline: 2px solid rgba(0, 122, 255, 0.5);
    outline-offset: 2px;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .toast {
        transition: opacity 0.2s ease;
    }
    
    .toast:hover {
        transform: none;
    }
    
    .toast-progress-bar {
        transition: none;
        animation: none;
    }
}
