.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 360px;
}

.custom-toast {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.custom-toast.show {
    opacity: 1;
    transform: translateY(0);
}

.custom-toast.hide {
    opacity: 0;
    transform: translateX(100%);
}

.toast-icon {
    font-size: 24px;
    line-height: 1;
    flex-shrink: 0;
}

.toast-message {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}

.toast-debug { border-left: 4px solid #6c757d; }
.toast-info { border-left: 4px solid #0d6efd; }
.toast-success { border-left: 4px solid #198754; }
.toast-warning { border-left: 4px solid #fd7e14; }
.toast-error,
.toast-danger { border-left: 4px solid #dc3545; }

@media (max-width: 768px) {
    .toast-container {
        left: 12px;
        right: 12px;
        bottom: 12px;
        max-width: none;
    }
    
    .custom-toast {
        padding: 14px 16px;
    }
}
